Skip to content

Commit

Permalink
Separated installation, testing, and lint
Browse files Browse the repository at this point in the history
GitHub actions now has three separate steps for these tasks
  • Loading branch information
LCVcode committed Aug 17, 2024
1 parent 4bd15b8 commit de52fbf
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: pip install pytest black
- name: Test with pytest
run: |
pip install pytest black
pytest
black --check --line-length 79 .
run: pytest
- name: Lint code
run: black --check --line-length 79 .

0 comments on commit de52fbf

Please sign in to comment.