Skip to content

Commit 7da4d64

Browse files
typo fix workflow
1 parent e4d1597 commit 7da4d64

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/main.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,12 @@ name: CI-CD
33
on: [push]
44

55
jobs:
6-
tests:
6+
test:
77
runs-on: ${{ matrix.os }}
88
strategy:
99
fail-fast: false
1010
matrix:
1111
os: [ubuntu-latest]
12-
# os: [ubuntu-latest, macos-latest, windows-latest]
13-
# os: [ubuntu-latest, macos-latest]
1412
python-version: ["3.10", "3.11", "3.12"]
1513

1614
steps:
@@ -30,7 +28,7 @@ jobs:
3028
tox -- --cov-report=xml
3129

3230
release:
33-
needs: tests
31+
needs: test
3432
if: startsWith(github.ref, 'refs/tags')
3533
runs-on: ${{ matrix.os }}
3634
strategy:

0 commit comments

Comments
 (0)