_find_failures #10
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
# Generated file: !!! DO NOT EDIT !!! | |
--- | |
env: | |
PYPERFORMANCE_HASH: ebb37f3583e26ea22cee34126b3b8a815112370b | |
PYSTON_BENCHMARKS_HASH: 004743ccbd9e54598c543d7eb71fd3b8e10d5750 | |
name: _find_failures | |
on: | |
schedule: | |
- cron: 0 8 * * 0 | |
workflow_dispatch: {} | |
jobs: | |
find_failures: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout benchmarking | |
uses: actions/checkout@v4 | |
- name: Setup system Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
cache: pip | |
- name: Install dependencies from PyPI | |
run: python -m pip install -r requirements.txt | |
- name: Regenerate derived data | |
run: python -m bench_runner find_failures > failures.md | |
env: | |
GH_TOKEN: ${{ github.token }} | |
- name: Add to repo | |
uses: EndBug/add-and-commit@v9 | |
with: | |
add: "['failures.md']" | |
message: Benchmarking failures |