mirror of
https://github.com/bsedin/matrix-webhook.git
synced 2026-01-16 08:05:57 +00:00
13 lines
314 B
YAML
13 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
|