Skip to content
This repository has been archived by the owner on Nov 14, 2023. It is now read-only.

chore(deps): update actions/checkout action to v4 #5

chore(deps): update actions/checkout action to v4

chore(deps): update actions/checkout action to v4 #5

Workflow file for this run

name: Continious Integration
on:
pull_request:
branches: ["main"]
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: "./go.mod"
- name: Install Staticcheck
run: go install honnef.co/go/tools/cmd/staticcheck@latest
- name: Build project and verify dependencies
run: go build -v ./... && go mod verify
- name: Verify Code Quality
run: go vet ./... && staticcheck ./...