2021-09-17 14:04:09 -07:00
|
|
|
name: Automated API tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
2022-10-12 15:34:35 -07:00
|
|
|
- "webroot/**"
|
|
|
|
- "web/**"
|
|
|
|
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- "webroot/**"
|
|
|
|
- "web/**"
|
|
|
|
|
2021-09-17 14:04:09 -07:00
|
|
|
jobs:
|
|
|
|
api:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-04-10 11:54:39 +00:00
|
|
|
- uses: actions/checkout@v3
|
2022-04-04 13:52:54 -07:00
|
|
|
- uses: actions/setup-go@v3
|
2021-10-11 14:56:00 -07:00
|
|
|
with:
|
2022-10-12 15:34:35 -07:00
|
|
|
stable: "false"
|
|
|
|
go-version: "1.17.2"
|
2021-09-17 14:04:09 -07:00
|
|
|
- name: Run API tests
|
|
|
|
run: cd test/automated/api && ./run.sh
|