owncast/.github/workflows/automated-end-to-end-api.yaml

25 lines
434 B
YAML
Raw Normal View History

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