Skip to content

fix: deprecate firewall_already_removed error code (#748) #1720

fix: deprecate firewall_already_removed error code (#748)

fix: deprecate firewall_already_removed error code (#748) #1720

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: 3.x
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
- uses: pre-commit/[email protected]
test:
strategy:
matrix:
go-version:
- "1.24"
- "1.25"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
- run: go test -coverprofile=coverage.txt -v -race ./...
- uses: codecov/codecov-action@v5
if: >
!startsWith(github.head_ref, 'renovate/') &&
!startsWith(github.head_ref, 'releaser-pleaser--')
with:
token: ${{ secrets.CODECOV_TOKEN }}