Skip to content

Commit

Permalink
Merge branch 'main' into dev/tests
Browse files Browse the repository at this point in the history
  • Loading branch information
adjavon committed Feb 14, 2024
2 parents 2b7e683 + 350c744 commit 9f9be84
Show file tree
Hide file tree
Showing 9 changed files with 1,720 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.ipynb
8 changes: 7 additions & 1 deletion .github/workflows/black.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: black-action

on: [push, pull_request]
on:
pull_request:
branches:
- main
push:
branches:
- main

jobs:
linter_name:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Generate Pages

on: [push, pull_request]
on:
pull_request:
branches:
- main
push:
branches:
- main

jobs:
docs:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/mypy.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Python mypy

on: [push, pull_request]
on:
pull_request:
branches:
- main
push:
branches:
- main

jobs:
static-analysis:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,7 @@ jobs:
pip install -r requirements-dev.txt
- name: Test
run: pytest tests -s -v --color=yes
run: pytest --color=yes --cov --cov-report=xml --cov-report=term-missing

- name: Coverage
uses: codecov/codecov-action@v3
Loading

0 comments on commit 9f9be84

Please sign in to comment.