Skip to content

Commit

Permalink
ci: Refine publish workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
EltonChou committed Sep 11, 2024
1 parent 0b37e7e commit 04a28fd
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/pypi_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,13 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: "3.12"

- name: Install dependencies
run: |
Expand All @@ -26,7 +23,7 @@ jobs:
- name: Run test
run: |
tox
tox -e py312, lint, type, gh-cov-report
- name: Publish package
run: |
Expand Down

0 comments on commit 04a28fd

Please sign in to comment.