Skip to content

chore(deps): bump github.com/crowdsecurity/crowdsec from 1.6.10 to 1.7.3 #60

chore(deps): bump github.com/crowdsecurity/crowdsec from 1.6.10 to 1.7.3

chore(deps): bump github.com/crowdsecurity/crowdsec from 1.6.10 to 1.7.3 #60

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.24.5'
- name: Install dependencies
run: go mod download
- name: Build the application
run: go build -v ./...
- name: Run tests
run: go test ./... -v
- name: Lint code
run: go vet ./...
- name: install staticcheck
run: go install honnef.co/go/tools/cmd/staticcheck@latest
- name: Run staticcheck
run: staticcheck ./...