2021-10-07 06:03:48 +02:00
|
|
|
name: Automated HLS tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
2022-06-29 23:34:37 +02:00
|
|
|
- 'web/**'
|
2021-10-07 06:03:48 +02:00
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
2022-06-29 23:34:37 +02:00
|
|
|
- 'web/**'
|
|
|
|
|
2021-10-07 06:03:48 +02: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
|
2022-11-05 04:04:13 +01:00
|
|
|
|
2021-10-07 06:03:48 +02:00
|
|
|
steps:
|
2022-11-24 00:04:20 +01:00
|
|
|
- id: skip_check
|
|
|
|
uses: fkirc/skip-duplicate-actions@v5
|
|
|
|
with:
|
|
|
|
concurrent_skipping: 'same_content_newer'
|
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:
|
|
|
|
go-version: '1.17.2'
|
2021-10-07 06:03:48 +02:00
|
|
|
- name: Run HLS tests
|
|
|
|
run: cd test/automated/hls && ./run.sh
|