You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
599 B
28 lines
599 B
name: Automated HLS tests |
|
|
|
on: |
|
push: |
|
paths-ignore: |
|
- 'web/**' |
|
pull_request: |
|
paths-ignore: |
|
- 'web/**' |
|
|
|
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: |
|
- uses: actions/checkout@v3 |
|
- uses: actions/setup-go@v3 |
|
with: |
|
stable: 'false' |
|
go-version: '1.17.2' |
|
- name: Run HLS tests |
|
run: cd test/automated/hls && ./run.sh
|
|
|