Skip to content

Commit

Permalink
change action order
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasstraka committed Sep 4, 2023
1 parent 3d8f860 commit 6587798
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,8 @@ jobs:
cache: 'pip'
cache-dependency-path: 'requirements.txt'
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Analysing the code with pylint
run: |
pylint pyOxygenSCPI
run: pip install -r requirements.txt
- name: Running unit tests with pytest
run: |
pytest .
run: pytest
- name: Analyzing the code with pylint
run: pylint pyOxygenSCPI

0 comments on commit 6587798

Please sign in to comment.