We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3388527 + fe0a074 commit ab58a22Copy full SHA for ab58a22
1 file changed
.github/workflows/benchmarks.yml
@@ -12,14 +12,17 @@ jobs:
12
permissions:
13
contents: write # required for pushing to gh-pages
14
runs-on: oracle-bare-metal-64cpu-512gb-x86-64
15
+ container:
16
+ image: python:3.13-slim
17
steps:
18
+ - name: Install Git # since Git isn't available in the container image used above
19
+ run: |
20
+ apt-get update
21
+ apt-get install -y git
22
+ - name: Make repo safe for Git inside container
23
+ run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
24
- name: Checkout Core Repo @ SHA - ${{ github.sha }}
25
uses: actions/checkout@v4
- - name: Set up Python
- uses: actions/setup-python@v5
- with:
- python-version: "3.13"
- architecture: 'x64'
26
- name: Install tox
27
run: pip install tox-uv
28
- name: Run tox
0 commit comments