All checks were successful
PR Check / check-and-test (pull_request) Successful in 1m6s
- Included a new step in the test-pr.yaml workflow to set up FFmpeg, improving the project's media handling capabilities. - This addition complements the existing build steps for Go and frontend assets, ensuring a more comprehensive build environment.
17 lines
419 B
YAML
17 lines
419 B
YAML
name: PR Check
|
|
on:
|
|
- pull_request
|
|
|
|
jobs:
|
|
check-and-test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@main
|
|
- uses: actions/setup-go@main
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
- uses: FedericoCarboni/setup-ffmpeg@v3
|
|
- run: go mod tidy
|
|
- run: cd web && npm install && npm run build
|
|
- run: go build ./...
|
|
- run: go test -race -v -shuffle=on ./... |