Skip to content

Add integration with the new Prediction API #47

Add integration with the new Prediction API

Add integration with the new Prediction API #47

Workflow file for this run

name: Test gatewayd-plugin-sql-ids-ips
on:
push:
branches:
- main
tags:
- v*
paths-ignore:
- "README.md"
- "LICENSE"
- "CONTRIBUTING.md"
- "CODE_OF_CONDUCT.md"
- ".gitignore"
- ".gitattributes"
pull_request:
paths-ignore:
- "README.md"
- "LICENSE"
- "CONTRIBUTING.md"
- "CODE_OF_CONDUCT.md"
- ".gitignore"
- ".gitattributes"
jobs:
test:
name: Test gatewayd-plugin-sql-ids-ips
runs-on: ubuntu-latest
# Timeout after 5 minutes, to avoid hanging tests
timeout-minutes: 5
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Go 🧑‍💻
uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: Lint code issues 🚨
uses: golangci/golangci-lint-action@v6
- name: Run tests 🧪
run: go test -p 1 -cover -covermode atomic -coverprofile=profile.cov -v ./...
# Uncomment the following lines to upload the coverage report to Coveralls
# - name: Upload coverage report 📈
# uses: shogo82148/actions-goveralls@v1
# with:
# path-to-profile: profile.cov