Skip to content

Commit

Permalink
update library an readme
Browse files Browse the repository at this point in the history
  • Loading branch information
kangreon committed Oct 3, 2024
1 parent 644f8a9 commit 20c0a28
Show file tree
Hide file tree
Showing 8 changed files with 136 additions and 383 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@ jobs:
- name: Lint code
run: |
make lint
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.6', '3.7', '3.8']
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v2
- name: Set up Python
Expand All @@ -27,7 +28,9 @@ jobs:
- name: Install dependencies
run: |
make deps
publish:
if: github.ref == 'refs/heads/main'
needs: [lint, test]
runs-on: ubuntu-latest
steps:
Expand All @@ -48,4 +51,4 @@ jobs:
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
password: ${{ secrets.PYPI_API_TOKEN }}
Loading

0 comments on commit 20c0a28

Please sign in to comment.