Skip to content

Commit b4f4bbb

Browse files
Install python through cacheable action, exclude from asdf install
1 parent 4245d7b commit b4f4bbb

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/python-tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,16 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- uses: actions/checkout@09d2acae674a48949e3602304ab46fd20ae0c42f
22-
- uses: launchbynttdata/actions-asdf-install_tools@v0
22+
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065
23+
with:
24+
python-version: '3.13'
25+
- uses: launchbynttdata/actions-asdf-install_tools@feature/exclude-tools
26+
with:
27+
exclude_tools: "python"
2328
- uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd
2429

2530
run-tests:
31+
needs: [ pre-commit ]
2632
runs-on: ubuntu-latest
2733
strategy:
2834
matrix:

0 commit comments

Comments
 (0)