2021-10-06 21:03:48 -07:00
|
|
|
name: Automated HLS tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
2022-06-29 14:34:37 -07:00
|
|
|
- 'web/**'
|
2021-10-06 21:03:48 -07:00
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
2022-06-29 14:34:37 -07:00
|
|
|
- 'web/**'
|
|
|
|
|
2021-10-06 21:03:48 -07:00
|
|
|
env:
|
|
|
|
S3_BUCKET: ${{ secrets.S3_BUCKET }}
|
|
|
|
S3_ACCESS_KEY: ${{ secrets.S3_ACCESS_KEY }}
|
|
|
|
S3_ENDPOINT: ${{ secrets.S3_ENDPOINT }}
|
|
|
|
S3_REGION: ${{ secrets.S3_REGION }}
|
|
|
|
S3_SECRET: ${{ secrets.S3_SECRET }}
|
|
|
|
|
|
|
|
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:
|
|
|
|
stable: 'false'
|
|
|
|
go-version: '1.17.2'
|
2021-10-06 21:03:48 -07:00
|
|
|
- name: Run HLS tests
|
|
|
|
run: cd test/automated/hls && ./run.sh
|