diff options
author | siddharth <s@ricketyspace.net> | 2022-06-03 22:45:55 -0400 |
---|---|---|
committer | siddharth <s@ricketyspace.net> | 2022-06-03 22:45:55 -0400 |
commit | 64b9433ddc4d4b3f742bb7d4b7895b8be3398ada (patch) | |
tree | aed561e9fe785fae27e2b95c36c636c2b7bc04cd /.github | |
parent | eac177178c85ec072b99b80e994abfbf6ebd3d98 (diff) |
.github/workflows: add run-tests.yml
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/run-tests.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml new file mode 100644 index 0000000..c10d06d --- /dev/null +++ b/.github/workflows/run-tests.yml @@ -0,0 +1,11 @@ +name: peach-run-tests +on: [push] +jobs: + run-tests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-go@v3 + with: + go-version: '1.18.3' + - run: make tests ARGS=-v |