Skip to content

Bump peter-evans/create-pull-request from 7.0.9 to 7.0.11 (#43) #74

Bump peter-evans/create-pull-request from 7.0.9 to 7.0.11 (#43)

Bump peter-evans/create-pull-request from 7.0.9 to 7.0.11 (#43) #74

Workflow file for this run

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