Update workflows #39
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v3 | |
- 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 |