Skip to content

Commit

Permalink
Merge pull request #7 from kausalflow/init
Browse files Browse the repository at this point in the history
Init
  • Loading branch information
cmp0xff authored Feb 19, 2024
2 parents 2830720 + d3afb1a commit d37221d
Show file tree
Hide file tree
Showing 6 changed files with 171 additions and 60 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
tests:
strategy:
matrix:
python-version: [3.9,3.10]
python-version: ["3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -27,7 +27,7 @@ jobs:
run: poetry install --with docs,test
- name: Build coverage file
run: |
pytest --cache-clear --cov=app tests/ > pytest-coverage.txt
pytest --cache-clear --cov=hamiltonian_flow tests/ > pytest-coverage.txt
- name: Comment coverage
uses: coroo/[email protected]
build-n-publish:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
build:
strategy:
matrix:
python-version: [3.9, "3.10"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -37,6 +37,6 @@ jobs:
run: poetry install --with docs
- name: Build coverage file
run: |
poetry run pytest --cache-clear --cov=app tests/ > pytest-coverage.txt
poetry run pytest --cache-clear --cov=hamiltonian_flow tests/ > pytest-coverage.txt
- name: Comment coverage
uses: coroo/[email protected]
2 changes: 2 additions & 0 deletions hamiltonian_flow/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
def foo():
pass
Loading

0 comments on commit d37221d

Please sign in to comment.