-
Notifications
You must be signed in to change notification settings - Fork 55
24 lines (23 loc) · 819 Bytes
/
test.yml
File metadata and controls
24 lines (23 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
- 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