Run CI on push to master.
CI / check-and-test (pull_request) Failing after 43s

Keep setup-ffmpeg and Go 1.25.4; add golangci-lint matching steamcache2.
This commit is contained in:
s1d3sw1ped_bot
2026-08-31 21:04:15 +00:00
parent 1a69fcfd04
commit 0f374b1d10
+14 -5
View File
@@ -1,16 +1,25 @@
name: PR Check
name: CI
on:
- pull_request
pull_request:
push:
branches:
- master
jobs:
check-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: actions/setup-go@main
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- uses: FedericoCarboni/setup-ffmpeg@v3
- run: go mod tidy
- run: go build ./...
- run: go test -race -v -shuffle=on ./...
- run: go vet ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v8
with:
version: v2.12
args: --timeout=5m
- run: go test -race -v -shuffle=on ./...