Skip to content

feat: upgrades coraza and CRS. (#17) #44

feat: upgrades coraza and CRS. (#17)

feat: upgrades coraza and CRS. (#17) #44

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.21'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v3
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