diff --git a/.github/workflows/python_release_dry_run.yaml b/.github/workflows/python_release_dry_run.yaml index fcae5b36..d4256572 100644 --- a/.github/workflows/python_release_dry_run.yaml +++ b/.github/workflows/python_release_dry_run.yaml @@ -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 @@ -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: |