diff options
| author | Jan Sucan <jan@jansucan.com> | 2023-08-10 07:48:20 +0200 |
|---|---|---|
| committer | Jan Sucan <jan@jansucan.com> | 2023-10-15 15:22:26 +0200 |
| commit | c17eb7dcae313fd6ad1b7c19ed348b50a28a4be6 (patch) | |
| tree | 63ecbb02b79c44ee7c6c453bdce37960fcfc5c08 /.github | |
| parent | e08b279293158074fcac708f8910743d24b1ce25 (diff) | |
github: Add workflow for running the tests
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/tests.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..565a096 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,9 @@ +name: Run tests +on: push +jobs: + run-tests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - shell: bash + run: make test |
