-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
139 additions
and
6 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,118 @@ | ||
name: CI Pipeline | ||
|
||
on: | ||
- push | ||
|
||
jobs: | ||
format: | ||
name: Check formatting | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: actions/[email protected] | ||
with: | ||
python-version: "3.12" | ||
|
||
- name: Install tox | ||
run: python -m pip install tox | ||
|
||
- name: Run black | ||
run: tox -e format | ||
|
||
lint: | ||
name: Lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: actions/[email protected] | ||
with: | ||
python-version: "3.12" | ||
|
||
- name: Install tox | ||
run: python -m pip install tox | ||
|
||
- name: Run flake8 | ||
run: tox -e lint | ||
|
||
typecheck: | ||
name: Type check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: actions/[email protected] | ||
with: | ||
python-version: "3.12" | ||
|
||
- name: Install tox | ||
run: python -m pip install tox | ||
|
||
- name: Run mypy | ||
run: python -m tox -e typecheck | ||
|
||
test: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python: | ||
- version: "3.12" | ||
toxenv: "py312" | ||
- version: "3.8" | ||
toxenv: "py38" | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: actions/[email protected] | ||
with: | ||
python-version: ${{ matrix.python.version }} | ||
|
||
- name: Install tox | ||
run: python -m pip install tox | ||
|
||
- name: Run pytest | ||
run: tox -e ${{ matrix.python.toxenv }} | ||
|
||
build_source_dist: | ||
name: Build source distribution | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: actions/[email protected] | ||
with: | ||
python-version: "3.12" | ||
|
||
- name: Install build | ||
run: python -m pip install build | ||
|
||
- name: Run build | ||
run: python -m build --sdist | ||
|
||
- uses: actions/upload-artifact@v3 | ||
with: | ||
path: dist/*.tar.gz | ||
|
||
publish: | ||
name: Publish package | ||
if: startsWith(github.event.ref, 'refs/tags/v') | ||
needs: | ||
# - format | ||
# - lint | ||
# - typecheck | ||
- test | ||
- build_source_dist | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: artifact | ||
path: ./dist # Update to match root of package | ||
|
||
- uses: pypa/[email protected] | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_API_TOKEN }} |
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