Skip to content

Commit

Permalink
chore(ci): confirm that all code changes have been committed
Browse files Browse the repository at this point in the history
  • Loading branch information
ctreatma committed Sep 6, 2024
1 parent bfd23a1 commit e04d19e
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test-codegen.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@

name: Generate and lint code

on:
push:
pull_request:

jobs:
test:
strategy:
matrix:
go-version: [1.19.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Checkout code
uses: actions/checkout@v4
- name: Verify Patches
run: make patch-all
- name: Generate
run: |
make generate-all
# Expect all changes to be accounted for
! git status --porcelain | grep .

0 comments on commit e04d19e

Please sign in to comment.