ci: fix typo in workflow file #50
Workflow file for this run
This file contains hidden or 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 Testgen | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| push: | |
| merge_group: | |
| schedule: | |
| - cron: '0 18 * * *' | |
| env: | |
| PYTHON_VERSION: "3.11" | |
| jobs: | |
| linting: | |
| runs-on: ubuntu-latest | |
| name: Lint | |
| steps: | |
| - name: Check out source repository | |
| uses: actions/checkout@v3 | |
| - name: Set up Python environment | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ env.PYTHON_VERSION }} | |
| cache: 'pip' # caching pip dependencies | |
| - name: Install Python requirements. | |
| run: pip install -r requirements.txt | |
| - name: mypy Typecheck | |
| run: mypy ./tests | |
| - name: Black Format | |
| uses: psf/black@23.9.1 | |
| with: | |
| src: "./tests" | |
| testgen: | |
| runs-on: ubuntu-latest | |
| name: Generate Tests | |
| steps: | |
| - name: Check out source repository | |
| uses: actions/checkout@v3 | |
| - name: Set up Rust toolchain | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: rustfmt | |
| - name: Set up Python environment | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ env.PYTHON_VERSION }} | |
| cache: 'pip' # caching pip dependencies | |
| - name: Install Python requirements. | |
| run: pip install -r requirements.txt | |
| - name: Generate test files | |
| working-directory: ./tests | |
| # Generate but don't run the test suite - we already do that in the | |
| # other CI tasks that run `cargo test`. | |
| run: python3 generate.py --no-test | |
| - name: Enforce no diff | |
| run: git diff --exit-code |