Bump goreleaser/goreleaser-action from 5 to 6 in the github-deps group #824
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: Test | |
on: | |
# Runs on branch push to master & PRs | |
push: | |
branches: | |
- master | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
- '**.md' | |
# Runs daily at 05:05 | |
schedule: | |
- cron: '5 5 * * *' | |
# Allows running manually | |
workflow_dispatch: | |
jobs: | |
integration: | |
name: "VPP Integration ${{ matrix.version }}" | |
runs-on: ubuntu-latest | |
env: | |
VPP_REPO: ${{ matrix.version }} | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- 'master' | |
- '2402' | |
- '2310' | |
- '2306' | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v4 | |
- name: "Setup Go" | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.21' | |
- name: "Run Tests" | |
run: | | |
make test-integration |