Skip to content

Commit

Permalink
updates CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
YanaR05 committed Oct 23, 2024
1 parent 2178acb commit 78a87f6
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,13 @@ jobs:
run: |
black --check .
- name: Check for unused dependencies
run: |
pip-check

- name: Run tests
run: pytest

build-macos:
runs-on: macos-latest
steps:
Expand All @@ -69,4 +76,11 @@ jobs:
- name: Check code formatting with black
run: |
black --check .
black --check .
- name: Check for unused dependencies
run: |
pip-check

- name: Run tests
run: pytest
2 changes: 2 additions & 0 deletions tests/test1.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
def test1():
assert True

0 comments on commit 78a87f6

Please sign in to comment.