Skip to content

Commit

Permalink
skip 3.7 test for macos
Browse files Browse the repository at this point in the history
  • Loading branch information
ulixius9 committed Jun 22, 2023
1 parent e31d830 commit b54bcbd
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ jobs:
- name: Install
run: pip install tox codecov
- name: Script
run: tox -e py
run: |
# Add conditional check to skip the step
if [ "${{ matrix.os }}" != "macos-latest" ] || [ "${{ matrix.python-version }}" != "3.7" ]; then
tox -e py
else
echo "Skipping Script step for macOS-latest with Python 3.7"
fi
- name: After Success
run: codecov

0 comments on commit b54bcbd

Please sign in to comment.