Scenario load tests with simulator #11879
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 Tests - Linting | |
on: | |
workflow_call: | |
pull_request: | |
branches: | |
- "**" | |
concurrency: | |
group: linting-${{ github.event_name == 'pull_request' && format('{0}-{1}', github.workflow, github.event.pull_request.number) || github.workflow_ref }} | |
cancel-in-progress: true | |
jobs: | |
pr-tests-linting: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 1 | |
matrix: | |
python-version: ["3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install pip packages | |
run: | | |
python -m pip install --upgrade pip | |
pip install uv==0.4.1 tox==4.18.0 tox-uv==1.11.2 | |
uv --version | |
- name: Get uv cache dir | |
id: pip-cache | |
shell: bash | |
run: | | |
echo "dir=$(uv cache dir)" >> $GITHUB_OUTPUT | |
# TODO: change cache key from setup.cfg to something more general | |
- name: Load github cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.pip-cache.outputs.dir }} | |
key: ${{ runner.os }}-uv-py${{ matrix.python-version }}-${{ hashFiles('setup.cfg') }} | |
restore-keys: | | |
${{ runner.os }}-uv-py${{ matrix.python-version }}- | |
- uses: pre-commit/[email protected] | |
- name: Check Protocol Version | |
run: | | |
tox -e syft.protocol.check | |
- name: Generate API Snapshot Diff with latest beta | |
run: | | |
tox --recreate -e syft.api.snapshot |