Skip to content

Commit

Permalink
Only run style checks on 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
mdickinson committed Jun 27, 2024
1 parent aa9ec79 commit 69bc850
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-with-edm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ jobs:
edm-version: ${{ env.INSTALL_EDM_VERSION }}
- name: Install test environment
run: python etstool.py install --runtime=${{ matrix.runtime }}
- name: Run style checks (only on Linux)
- name: Run style checks (only on Linux, 3.8)
run: python etstool.py flake8 --runtime=${{ matrix.runtime }}
if: startsWith(matrix.os, 'ubuntu')
if: startsWith(matrix.os, 'ubuntu') && matrix.runtime == '3.8'
- name: Run tests
run: python etstool.py test --runtime=${{ matrix.runtime }}

0 comments on commit 69bc850

Please sign in to comment.