Skip to content

Commit

Permalink
updated win actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ayalalazaro committed Nov 21, 2024
1 parent 8ff07f5 commit 8d04609
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-app-310-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Set environment variable to skip integrity check
run: echo "SKIP_INTEGRITY_CHECK=true" >> $GITHUB_ENV
run: echo "SKIP_INTEGRITY_CHECK=true" >> $env:GITHUB_ENV
- name: Test with pytest
run: |
pytest
2 changes: 1 addition & 1 deletion .github/workflows/python-app-311-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Set environment variable to skip integrity check
run: echo "SKIP_INTEGRITY_CHECK=true" >> $GITHUB_ENV
run: echo "SKIP_INTEGRITY_CHECK=true" >> $env:GITHUB_ENV
- name: Test with pytest
run: |
pytest
2 changes: 1 addition & 1 deletion .github/workflows/python-app-312-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Set environment variable to skip integrity check
run: echo "SKIP_INTEGRITY_CHECK=true" >> $GITHUB_ENV
run: echo "SKIP_INTEGRITY_CHECK=true" >> $env:GITHUB_ENV
- name: Test with pytest
run: |
pytest
2 changes: 1 addition & 1 deletion .github/workflows/python-app-39-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Set environment variable to skip integrity check
run: echo "SKIP_INTEGRITY_CHECK=true" >> $GITHUB_ENV
run: echo "SKIP_INTEGRITY_CHECK=true" >> $env:GITHUB_ENV
- name: Test with pytest
run: |
pytest

0 comments on commit 8d04609

Please sign in to comment.