Bump peter-evans/create-pull-request from 7.0.9 to 7.0.11 (#43) #74
This file contains hidden or 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: Test everything | |
| on: | |
| schedule: | |
| # Weekly, at 03:00 on Monday UTC | |
| - cron: "0 3 * * 1" | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Checkout Repo ⚡️ | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set Up Python 🐍 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.12 | |
| - name: Install Dependencies 📦 | |
| run: pip3 install -r requirements.txt | |
| - name: Build and Install Python Extension 🛠️ | |
| run: pip3 install src/ | |
| - name: Run Benchmarks 📊 | |
| run: pytest tests/test_benchmark.py --verbose |