-
-
Notifications
You must be signed in to change notification settings - Fork 228
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use poetry to manage dependencies and release
- Loading branch information
Showing
6 changed files
with
589 additions
and
0 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,35 @@ | ||
name: build and publish to pypi | ||
on: | ||
push: | ||
tags: | ||
- "*" | ||
|
||
jobs: | ||
test-package: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
lfs: false | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.10" | ||
- uses: abatilo/actions-poetry@v2 | ||
with: | ||
poetry-version: "1.3.2" | ||
- name: Add Poetry Plugins | ||
run: | | ||
poetry self add poetry-dynamic-versioning[plugin] | ||
- name: Install dependencies | ||
run: poetry install | ||
|
||
- name: Run tests | ||
run: poetry run pytest | ||
env: | ||
HEAD: release | ||
|
||
- name: Config PIPY | ||
run: poetry config pypi-token.pypi ${{ secrets.PIPY_TOKEN }} | ||
|
||
- name: build and publish | ||
run: poetry publish --build |
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,25 @@ | ||
name: Run Unittest | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
types: [opened, synchronize, closed] | ||
|
||
jobs: | ||
run_test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.10" | ||
- uses: abatilo/actions-poetry@v2 | ||
with: | ||
poetry-version: "1.3.2" | ||
- name: Install Dependencies | ||
run: poetry install | ||
- name: Pytest | ||
run: poetry run pytest | ||
env: | ||
HEAD: ${{ github.ref }} |
Oops, something went wrong.