Skip to content

Commit

Permalink
test: check all python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarolopez committed Sep 26, 2024
1 parent 125b637 commit 059cef3
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,22 @@ on:
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: 3.12
python-version: ${{ matrix.python-version }}

- name: Install package
run: |
python -m pip install --upgrade pip
python -m pip install .
- name: Run imgsync in download mode only
run: glance-imgsync --download-only sync

0 comments on commit 059cef3

Please sign in to comment.