Pruning collect error more relaxed #68
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: Profile on IPC23LT | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
pull_request: | |
branches: | |
- main | |
- dev | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.10", "3.11", "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: Display Python version | |
run: python -c "import sys; print(sys.version)" | |
- name: Install build dependencies | |
run: python -m pip install --upgrade pip setuptools wheel | |
- name: Build and install | |
run: | | |
mkdir _wlplan | |
python -m pip install -v . | |
- name: Install test dependencies | |
run: python -m pip install -r tests/test-requirements.txt | |
- name: Profile | |
run: pytest **/*profile* |