Skip to content
Merged
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
13 changes: 8 additions & 5 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,17 @@ jobs:
permissions:
contents: write # required for pushing to gh-pages
runs-on: oracle-bare-metal-64cpu-512gb-x86-64
container:
image: python:3.13-slim
steps:
- name: Install Git # since Git isn't available in the container image used above
run: |
apt-get update
apt-get install -y git
- name: Make repo safe for Git inside container
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Checkout Core Repo @ SHA - ${{ github.sha }}
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
architecture: 'x64'
- name: Install tox
run: pip install tox-uv
- name: Run tox
Expand Down
Loading