Skip to content

Commit

Permalink
Fix action usage
Browse files Browse the repository at this point in the history
  • Loading branch information
druzsan committed Feb 8, 2024
1 parent b37430f commit e673e13
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dynamic-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ jobs:
uses: druzsan/setup-matrix@feature/use-python-dockerfile
with:
matrix: |
os: [ubuntu-latest windows-latest macos-latest]
python-version: [3.8 3.10 3.12]
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.8, 3.10, 3.12]
# Setup matrix on the main branch
- if: github.ref == 'refs/heads/main'
uses: druzsan/setup-matrix@feature/use-python-dockerfile
with:
matrix: |
os: [ubuntu-latest]
python-version: [3.8 3.10 3.12]
python-version: [3.8, 3.10, 3.12]
include:
- os: windows-latest
python-version: 3.8
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reuse-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
uses: druzsan/setup-matrix@feature/use-python-dockerfile
with:
matrix: |
os: [ubuntu-latest windows-latest macos-latest]
python-version: [3.8 3.10 3.12]
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.8, 3.10, 3.12]
# Check code formatting
check-format:
name: '🔍 Check Formatting'
Expand Down

0 comments on commit e673e13

Please sign in to comment.