Skip to content

Commit

Permalink
support more python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
lfoppiano committed Jan 8, 2025
1 parent 666441a commit a856702
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-build-unstable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@ on: [ push ]

concurrency:
group: build
# cancel-in-progress: true
cancel-in-progress: true


jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.8, 3.9 ]
python-version: [ 3.8, 3.9, 3.10, 3.11 ]
steps:
- name: Cleanup more disk space
run: sudo rm -rf /usr/share/dotnet && sudo rm -rf /opt/ghc && sudo rm -rf "/usr/local/share/boost" && sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
Expand Down

0 comments on commit a856702

Please sign in to comment.