Skip to content

Commit

Permalink
ci: fix generate pipeline (#357)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarvinJWendt committed Feb 16, 2024
1 parent 0c3c33b commit 6122028
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/generate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
- "README.md"

jobs:
test:
generate:
permissions:
contents: write

Expand All @@ -18,6 +18,17 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: "^1.20.6"

- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
fetch-depth: 0

- name: Run generate
if: matrix.os == 'ubuntu-latest'
run: make generate
Expand Down

0 comments on commit 6122028

Please sign in to comment.