Skip to content

Commit

Permalink
Merge pull request #425 from malthe/fix-os-config
Browse files Browse the repository at this point in the history
Fix OS runner config
  • Loading branch information
malthe authored Apr 19, 2024
2 parents 5dae93e + a64ba90 commit da3cc82
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ jobs:
fail-fast: false
matrix:
os:
- ["ubuntu-latest", "windows-latest"]
- "ubuntu-latest"
- "windows-latest"
config:
# [Python version, tox env]
- ["3.9", "lint"]
Expand All @@ -44,7 +45,7 @@ jobs:
- ["3.12", "mypy"]
- ["3.11", "z3c.macro"]
- ["3.11", "z3c.pt"]
runs-on: ${{ matrix.os[1] }}
runs-on: ${{ matrix.os }}
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
name: ${{ matrix.config[1] }}
steps:
Expand Down

0 comments on commit da3cc82

Please sign in to comment.