1
0
Fork 0
mirror of synced 2024-05-24 11:10:28 -04:00
yadm/.github/workflows/test.yml
Erik Flodin d926fb3e8b
Run "make test" in github workflow
This avoids having to specify the docker image in multiple places.
2020-12-30 12:54:13 +01:00

14 lines
235 B
YAML

---
name: Tests
on: # yamllint disable-line rule:truthy
- push
- pull_request
- workflow_dispatch
jobs:
Tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Tests
run: make test