matrix-webhook/.github/workflows/test.yml

13 lines
314 B
YAML
Raw Normal View History

2021-06-16 19:23:25 -04:00
name: build docker image and run tests inside
on: push
jobs:
tests:
runs-on: ubuntu-latest
steps:
2021-07-13 04:28:40 -04:00
- name: Checkout
2021-06-16 19:23:25 -04:00
uses: actions/checkout@v2
- name: Tests
2021-07-13 04:28:40 -04:00
run: docker-compose -f test.yml up --exit-code-from tests
- name: Coverage
2021-07-11 10:17:09 -04:00
uses: codecov/codecov-action@v1