File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -12,14 +12,17 @@ jobs:
12
12
permissions :
13
13
contents : write # required for pushing to gh-pages
14
14
runs-on : oracle-bare-metal-64cpu-512gb-x86-64
15
+ container :
16
+ image : python:3.13-slim
15
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"
16
24
- name : Checkout Core Repo @ SHA - ${{ github.sha }}
17
25
uses : actions/checkout@v4
18
- - name : Set up Python
19
- uses : actions/setup-python@v5
20
- with :
21
- python-version : " 3.13"
22
- architecture : ' x64'
23
26
- name : Install tox
24
27
run : pip install tox-uv
25
28
- name : Run tox
You can’t perform that action at this time.
0 commit comments