Skip to content

chore(deps): update actions/checkout action to v4 #1096

chore(deps): update actions/checkout action to v4

chore(deps): update actions/checkout action to v4 #1096

Workflow file for this run

name: Tests
on:
pull_request:
branches: '**'
push:
branches: [main, master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
base: [debian, alpine]
env:
BASE: ${{ matrix.base }} # needed in tests/version.sh
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- name: Build ${{ matrix.base }} image
run: docker buildx build -f ${{ matrix.base }}/Dockerfile -t hedgedoc .
- run: docker network create postgres
- run: docker run --name postgres --network postgres -e POSTGRES_USER=hedgedoc -e POSTGRES_PASSWORD=password -e POSTGRES_DB=hedgedoc --net-alias database -d postgres:13.1
- run: ./tests/chore/startContainer.sh
- run: ls tests/*.sh | parallel
- run: ./tests/chore/stopContainer.sh