Skip to content

Dont sign

Dont sign #42

Workflow file for this run

name: Build Workflow
on:
push:
env:
STEAM_TOKEN: ${{secrets.STEAM_TOKEN}}
jobs:
lint:
name: Linter
environment: master
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Install Analyzer Dependencies
run: make check_deps
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: 'latest'
staticcheck:
runs-on: ubuntu-20.04
steps:
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- run: go install honnef.co/go/tools/cmd/staticcheck@latest
- uses: actions/checkout@v4
- run: make static
test:
runs-on: ubuntu-latest
name: Test
environment: master
needs: [lint, staticheck]

Check failure on line 44 in .github/workflows/check.yml

View workflow run for this annotation

GitHub Actions / Build Workflow

Invalid workflow file

The workflow is not valid. .github/workflows/check.yml (Line: 44, Col: 19): Job 'test' depends on unknown job 'staticheck'.
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: git fetch --force --tags
- uses: actions/setup-go@v5
with:
go-version: 'stable'
cache: true
- name: Test
run: make test