-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a3de45a
commit fa459fb
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
# This workflow runs tests using pytest. | ||
|
||
name: Run pytest | ||
name: Run tests | ||
|
||
on: | ||
push: | ||
|
@@ -30,7 +28,9 @@ jobs: | |
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install pdm | ||
run: pip install pdm | ||
run: | | ||
pip install pdm | ||
pdm install -d | ||
- name: pre-commit checks | ||
uses: pre-commit/[email protected] | ||
|