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:
1212 permissions :
1313 contents : write # required for pushing to gh-pages
1414 runs-on : oracle-bare-metal-64cpu-512gb-x86-64
15+ container :
16+ image : python:3.13-slim
1517 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"
1624 - name : Checkout Core Repo @ SHA - ${{ github.sha }}
1725 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'
2326 - name : Install tox
2427 run : pip install tox-uv
2528 - name : Run tox
You can’t perform that action at this time.
0 commit comments