Skip to content

Regenerate for V7, clean up dependency management, fix issues with direct uploads and video views, and lots more #136

Regenerate for V7, clean up dependency management, fix issues with direct uploads and video views, and lots more

Regenerate for V7, clean up dependency management, fix issues with direct uploads and video views, and lots more #136

Workflow file for this run

name: Integration Test
on:
push:
branches:
- master
pull_request:
# I appreciate this isn't the cleanest workflow, but it's the neatest I can get it while we're
# still using dep to manage dependencies. If we move to go modules this can be cleaned up a lot.
# I'd love to use a nicer checkout path, but GitHub actions won't let you use anything above
# /home/runner/work/mux-go/mux-go/, so /home/runner/work/mux-go/mux-go/go it is!
jobs:
build:
name: Integration Test
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
- name: Run Integration Tests
run: |
bash test.sh
env:
MUX_TOKEN_ID: ${{ secrets.MUX_TOKEN_ID }}
MUX_TOKEN_SECRET: ${{ secrets.MUX_TOKEN_SECRET }}