Run API tests on pull requests

This commit is contained in:
Gabe Kangas 2022-10-12 15:34:35 -07:00 committed by GitHub
parent 8a22475ccc
commit cade15ea1b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,9 +3,14 @@ name: Automated API tests
on:
push:
paths-ignore:
- 'webroot/**'
- 'web/**'
- "webroot/**"
- "web/**"
pull_request:
paths-ignore:
- "webroot/**"
- "web/**"
jobs:
api:
runs-on: ubuntu-latest
@ -13,9 +18,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
stable: 'false'
go-version: '1.17.2'
stable: "false"
go-version: "1.17.2"
- name: Run API tests
run: cd test/automated/api && ./run.sh