pass through new generate params #117
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: PR Test | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test_lint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [ "3.8", "3.9", "3.10", "3.11" ] | |
fail-fast: false | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
# uv is not yet supported by this cache, its fast enough to not cache | |
# cache: pip | |
# cache-dependency-path: "**/pyproject.toml" | |
- name: install uv | |
uses: yezz123/setup-uv@v4 | |
with: | |
uv-venv: "arcee-ci" | |
- name: install dependencies | |
run: uv pip install invoke && uv pip install '.[dev]' | |
- name: Run inv lint | |
run: inv lint | |
- name: Run tests | |
run: inv test |