Skip to content

Debug tests.yml

Debug tests.yml #80

Workflow file for this run

name: Codegen
on:
push:
branches:
- master
paths:
- "codegen/**"
- "src/**"
- "tests/**"
- ".github/workflows/codegen.yml"
- ".github/workflows/tests.yml"
- "*"
- "!**/*.md"
- "!**/*.txt"
- "!**/.gitignore"
pull_request:
branches:
- master
workflow_dispatch:
jobs:
codegen:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install Dependencies
run: pip install -r requirements.txt
- name: Codegen
run: python gen_all.py
working-directory: codegen
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: codegen_results
path: codegen/output/
retention-days: 5