Skip to content

Delete ValenceAvgComparisons.Workdays&Workhours.2019-Apr2nd2021.html #10

Delete ValenceAvgComparisons.Workdays&Workhours.2019-Apr2nd2021.html

Delete ValenceAvgComparisons.Workdays&Workhours.2019-Apr2nd2021.html #10

Workflow file for this run

name: Audit
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
audit:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.22
- name: Verify dependencies
run: go mod verify
- name: Build
run: go build -v ./...
- name: Run go vet
run: go vet ./...
- name: Install staticcheck
run: go install honnef.co/go/tools/cmd/staticcheck@latest
- name: Run staticcheck
run: staticcheck ./...