Skip to content

Commit

Permalink
maybe now
Browse files Browse the repository at this point in the history
  • Loading branch information
kongzii committed Jan 25, 2024
1 parent c6450d9 commit 3f3606a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: "Prepare Python environment"
description: "Set up Python and install dependencies"
runs:
using: "composite"
steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/python_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,21 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Prepare Python environment
uses: actions/python_prepare@v1
- uses: ./.github/actions/python_prepare
- name: Run mypy
run: poetry run mypy

pytest:
runs-on: ubuntu-latest
steps:
- name: Prepare Python environment
uses: actions/python_prepare@v1
- uses: ./.github/actions/python_prepare
- name: Run pytest
run: poetry run pytest
black:
runs-on: ubuntu-latest
steps:
- name: Prepare Python environment
uses: actions/python_prepare@v1
- uses: ./.github/actions/python_prepare
- name: Check with black
run: poetry run black --check .

0 comments on commit 3f3606a

Please sign in to comment.