Skip to content

Merge pull request #202 from CrowdStrike/dependabot/go_modules/go.ope… #519

Merge pull request #202 from CrowdStrike/dependabot/go_modules/go.ope…

Merge pull request #202 from CrowdStrike/dependabot/go_modules/go.ope… #519

Workflow file for this run

name: lint-and-test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-test-and-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.22
- name: lint
uses: golangci/golangci-lint-action@v6.1.0
with:
github-token: ${{ github.token }}
- name: test
run: go test -v -race ./...
- name: build
run: go build .