Skip to content

chore(deps): bump github.com/corazawaf/coraza/v3 from 3.2.2-0.20240930072342-29962d4b4519 to 3.2.2 #139

chore(deps): bump github.com/corazawaf/coraza/v3 from 3.2.2-0.20240930072342-29962d4b4519 to 3.2.2

chore(deps): bump github.com/corazawaf/coraza/v3 from 3.2.2-0.20240930072342-29962d4b4519 to 3.2.2 #139

Workflow file for this run

name: Test
on:
push:
branches:
- main
paths-ignore:
- "**/*.md"
- "LICENSE"
pull_request:
paths-ignore:
- "**/*.md"
- "LICENSE"
env:
GO_VERSION: '1.22'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Install Go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5
with:
go-version: ${{ env.GO_VERSION }}
cache: true
- name: Lint
run: go run mage.go lint
- name: Tests
run: go run mage.go test
- name: Build
run: go run mage.go build