chore(deps): update ghcr.io/coreruleset/albedo docker tag to v0.0.16 #437
Workflow file for this run
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: Tests | |
on: | |
push: | |
branches: | |
- "main" | |
paths-ignore: | |
- "**/*.md" | |
- "LICENSE" | |
pull_request: | |
paths-ignore: | |
- "**/*.md" | |
- "LICENSE" | |
jobs: | |
test: | |
strategy: | |
matrix: | |
go-version: [1.21.x] | |
os: [ubuntu-latest] | |
xcaddy-version: [v0.3.5] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
lfs: true | |
fetch-depth: 0 #for better blame info | |
- name: Tests and coverage | |
run: go run mage.go coverage | |
- name: Install xcaddy | |
run: go install github.com/caddyserver/xcaddy/cmd/xcaddy@${{ matrix.xcaddy-version }} | |
- name: Build caddy | |
run: go run mage.go buildCaddyLinux | |
- name: Run e2e tests | |
run: go run mage.go e2e | |
- name: Run regression tests (ftw) | |
run: go run mage.go ftw | |
- uses: actions/upload-artifact@v4 | |
if: success() || failure() | |
with: | |
name: ftw-envoy-logs | |
path: build/ftw-envoy.log |