-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from CIROH-UA/main
merge
- Loading branch information
Showing
7 changed files
with
310 additions
and
613 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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Test and Publish nwmurl to PyPi | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.x | ||
|
||
- name: Install dependencies | ||
run: pip install setuptools wheel pytest python-dateutil requests | ||
|
||
- name: Run pytest | ||
run: pytest | ||
publish: | ||
runs-on: ubuntu-latest | ||
environment: production | ||
steps: | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.x | ||
|
||
- name: Install dependencies | ||
run: pip install setuptools wheel pytest python-dateutil requests | ||
|
||
- name: Run pytest | ||
run: pytest | ||
|
||
- name: List Secrets | ||
run: | | ||
echo "Available secrets:" | ||
env | ||
- name: Build package | ||
run: python setup.py sdist bdist_wheel | ||
|
||
- name: Publish package if tests passed | ||
if: success() # Only runs if the previous steps were successful | ||
run: | | ||
pip install twine==4.0.2 | ||
echo "PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }}" # Print the API token for verification | ||
twine upload -u '__token__' -p ${{ secrets.PYPI_API_TOKEN }} dist/* |
Oops, something went wrong.