Skip to content

Commit

Permalink
python(ci): fix pypi run (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
solidiquis authored Jun 24, 2024
1 parent 916588e commit cad625a
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions .github/workflows/python_release_dry_run.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ jobs:
permissions:
id-token: write
steps:
- name: Run CI
uses: ./.github/workflows/python_ci.yaml

- name: Checkout code
uses: actions/checkout@v2

Expand All @@ -27,13 +24,28 @@ jobs:
with:
python-version: "3.9"

- name: Install dependencies
working-directory: python
- name: Pip install
run: |
python -m pip install --upgrade pip
pip install '.[build]'
pip install .
- name: Lint
run: |
ruff check
- name: Format
run: |
ruff format --check
- name: MyPy
run: |
mypy lib
- name: Pytest
run: |
pytest
- name: Build distributions
working-directory: python
run: |
Expand Down

0 comments on commit cad625a

Please sign in to comment.