blob: a68b89615d0da12d4ce321debdf8e684a6b80a11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
name: Run tests
on:
pull_request:
push:
branches:
- 'main'
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- shell: bash
run: make test
|