matrix-webhook/.github/workflows/test.yml
Guilhem Saurel 6633020fba clean tests
2021-07-13 11:41:16 +02:00

12 lines
314 B
YAML

name: build docker image and run tests inside
on: push
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Tests
run: docker-compose -f test.yml up --exit-code-from tests
- name: Coverage
uses: codecov/codecov-action@v1