Fix bench #1585
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: Python Codegen | |
on: | |
push: | |
branches: [main, update/pixi-lock] | |
paths-ignore: [".teamcity/**"] | |
tags: ["*"] | |
pull_request: | |
paths-ignore: [".teamcity/**"] | |
merge_group: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
codegen: | |
name: Codegen | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: prefix-dev/[email protected] | |
with: | |
pixi-version: "latest" | |
- name: Test if codegen runs without errors | |
run: pixi run codegen | |
- name: Ensure that no code has been generated | |
run: git diff --exit-code |