-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move PYOORB to a namespace package and update packaging utilities (#113)
Remove pyoorb and update package settings.
- Loading branch information
Showing
175 changed files
with
142 additions
and
711 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: hatch - Build Lint Test and Coverage | ||
name: Build Lint Test and Coverage | ||
|
||
on: | ||
push: | ||
|
@@ -15,6 +15,8 @@ jobs: | |
defaults: | ||
run: | ||
shell: bash -l {0} | ||
env: | ||
OORB_DATA: /tmp/oorb/data | ||
|
||
steps: | ||
- name: Checkout git repo | ||
|
@@ -30,16 +32,18 @@ jobs: | |
run: | | ||
sudo apt-get update -y | ||
sudo apt-get install -y gfortran liblapack-dev | ||
- name: Install Hatch | ||
wget -P /tmp/ https://storage.googleapis.com/oorb-data/oorb_data.tar.gz | ||
mkdir -p /tmp/oorb/ | ||
tar -xvf /tmp/oorb_data.tar.gz -C /tmp/oorb/ | ||
- name: Install Testing Dependencies | ||
run: | | ||
pip install pip --upgrade | ||
pip install hatch | ||
pip install ".[dev]" | ||
- name: Lint | ||
run: hatch run dev:lint | ||
- name: Test, with coverage report | ||
run: hatch run dev:coverage | ||
run: pdm run lint | ||
- name: Test with coverage | ||
run: pdm run coverage | ||
- name: Coverage report to coveralls | ||
uses: coverallsapp/[email protected] | ||
with: | ||
github-token: ${{ secrets.COVERALLS_TOKEN }} | ||
path-to-lcov: coverage.xml |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.