Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Xierumeng committed Feb 18, 2024
1 parent 50c64ba commit 3630240
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,14 @@ jobs:
pip install -r requirements.txt
pip install -r requirements-pytorch.txt
# Run tests with PyTest
- name: Run tests
# Run Black formatter inn check mode
- name: Black formatter check
run: black --check .

# Run Pylint linter
- name: Pylint linter
run: pylint .

# Run unit tests with PyTest
- name: Run unit tests
run: pytest -vv

0 comments on commit 3630240

Please sign in to comment.