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