Skip to content

ci(deps): bump actions/checkout from 6.0.2 to 6.0.3 #36

ci(deps): bump actions/checkout from 6.0.2 to 6.0.3

ci(deps): bump actions/checkout from 6.0.2 to 6.0.3 #36

Workflow file for this run

name: Test
on:
pull_request:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Set up Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version-file: "go.mod"
- name: Download dependencies
run: go mod download
- name: golangci-lint
uses: golangci/golangci-lint-action@82606bf257cbaff209d206a39f5134f0cfbfd2ee # v9.2.1
with:
version: latest
args: --timeout=5m
- name: Run tests
run: go test -v ./...