Skip to content

Commit

Permalink
Add reusable setup-python action (#448)
Browse files Browse the repository at this point in the history
Signed-off-by: Jose R. Gonzalez <[email protected]>
  • Loading branch information
komish authored Jun 7, 2024
1 parent f7d9653 commit bb7da2e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/actions/setup-python/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Setup Python
description: |
Consistently installs python across this project.
Should be used as a replacement for direct calls to actions/setup-python.
runs:
using: composite
steps:
- uses: actions/setup-python@v5
with:
python-version: '3.9'

0 comments on commit bb7da2e

Please sign in to comment.