Skip to content

Commit

Permalink
typo fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiaskoenig committed Aug 15, 2024
1 parent e4d1597 commit 7da4d64
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,12 @@ name: CI-CD
on: [push]

jobs:
tests:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
# os: [ubuntu-latest, macos-latest, windows-latest]
# os: [ubuntu-latest, macos-latest]
python-version: ["3.10", "3.11", "3.12"]

steps:
Expand All @@ -30,7 +28,7 @@ jobs:
tox -- --cov-report=xml

release:
needs: tests
needs: test
if: startsWith(github.ref, 'refs/tags')
runs-on: ${{ matrix.os }}
strategy:
Expand Down

0 comments on commit 7da4d64

Please sign in to comment.