build(deps): bump ruff from 0.6.4 to 0.7.0 #463
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: scripts | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: main | |
jobs: | |
eval-latency: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
python: [3.11] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
architecture: x64 | |
- name: Cache python modules | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-python-${{ matrix.python }}-${{ hashFiles('pyproject.toml') }}-build | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade uv | |
uv pip install --system -e . --upgrade | |
uv pip install --system onnx onnxruntime | |
- name: Run analysis script | |
run: python scripts/eval_latency.py rexnet1_0x |