-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
streamlined and optimised tide functions + added CI
- Loading branch information
Showing
27 changed files
with
287,887 additions
and
9,229 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 |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: test | ||
|
||
on: | ||
push: | ||
branches: | ||
- "main" | ||
- "master" | ||
- "dev" | ||
paths: | ||
- "**.py" | ||
- ".github/workflows/*test*.yml" | ||
- "pyproject.toml" | ||
- "poetry.lock" | ||
- "requirements/requirements*.txt" | ||
pull_request: | ||
paths: | ||
- "**.py" | ||
- ".github/workflows/*test*.yml" | ||
- "pyproject.toml" | ||
- "poetry.lock" | ||
- "requirements/requirements*.txt" | ||
|
||
jobs: | ||
test: | ||
name: "test Python ${{ matrix.python }} on ${{ matrix.os }}" | ||
runs-on: "${{ matrix.os }}" | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: ["ubuntu-latest"] | ||
python: ["3.9", "3.10", "3.11"] | ||
# include: | ||
# - os: "macos-latest" | ||
# python-version: "3.10" | ||
defaults: | ||
run: | ||
shell: "bash -eo pipefail {0}" | ||
|
||
steps: | ||
- uses: "actions/checkout@main" | ||
- uses: "actions/setup-python@main" | ||
with: | ||
python-version: "${{ matrix.python }}" | ||
- uses: "actions/cache@main" | ||
id: "cache" | ||
with: | ||
path: "${{ env.pythonLocation }}" | ||
key: "test-${{ runner.os }}-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml', 'requirements/*') }}" | ||
- run: "python --version" | ||
- run: "python -mpip install -U pip" | ||
- run: "python -mpip --version" | ||
- run: "python -mpip install -r requirements/requirements-dev.txt" | ||
- run: "python -mpip install ./" | ||
- run: "python -mpip cache info" | ||
- run: "python -mpip freeze" | ||
- run: "pytest tests/" | ||
env: | ||
PYTHONPATH: ${{ github.workspace }}/tests |
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 |
---|---|---|
|
@@ -91,7 +91,6 @@ repos: | |
"-o", | ||
"requirements/requirements-dev.txt", | ||
] | ||
|
||
- repo: "local" | ||
hooks: | ||
- id: "mypy" | ||
|
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
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
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
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.