mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 05:14:20 +03:00
f0bd7d2528
* Replace pkger with go:embed for bundling the admin. Closes #844 * Remove references to pkged.go * Point tests to use an updated version of Go * Add comment to new exported function * Cleanup * Add a dummy pkged.go to alert people to stop using it. * Add simple browser test to make sure the admin is available and renders * Don't panic
30 lines
No EOL
616 B
YAML
30 lines
No EOL
616 B
YAML
name: Automated HLS tests
|
|
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- 'webroot/**'
|
|
pull_request:
|
|
paths-ignore:
|
|
- 'webroot/**'
|
|
|
|
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@v2
|
|
- uses: actions/setup-go@v2
|
|
with:
|
|
stable: 'false'
|
|
go-version: '1.17.2'
|
|
- name: Run HLS tests
|
|
run: cd test/automated/hls && ./run.sh
|
|
|
|
|