Skip to content
This repository was archived by the owner on Apr 15, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,38 @@ jobs:
name: coverage-data
path: ".cache/.coverage.*"

benchmark:
name: benchmark
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install . -r pipelines/requirements/ci.txt

- uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('pipelines/requirements/*.txt') }}
restore-keys: |
${{ runner.os }}-pip-

- name: Run benchmarks
uses: CodSpeedHQ/action@v1
with:
token: ${{ secrets.CODSPEED_TOKEN }}
run: python scripts/ci.py -s test --no-error-on-missing-interpreters -- benchmarks/
env:
TARGET_PYTHON: 3.11

typesafety:
name: typesafety
runs-on: ubuntu-latest
Expand Down
Loading