2021-10-07 07:03:48 +03:00
|
|
|
name: Automated HLS tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
2022-06-30 00:34:37 +03:00
|
|
|
- 'web/**'
|
2021-10-07 07:03:48 +03:00
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
2022-06-30 00:34:37 +03:00
|
|
|
- 'web/**'
|
|
|
|
|
2021-10-07 07:03:48 +03: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 14:54:39 +03:00
|
|
|
- uses: actions/checkout@v3
|
2022-04-04 23:52:54 +03:00
|
|
|
- uses: actions/setup-go@v3
|
2021-10-12 00:56:00 +03:00
|
|
|
with:
|
|
|
|
stable: 'false'
|
|
|
|
go-version: '1.17.2'
|
2021-10-07 07:03:48 +03:00
|
|
|
- name: Run HLS tests
|
|
|
|
run: cd test/automated/hls && ./run.sh
|