Skip to content

Commit

Permalink
update nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
zktuong committed Dec 6, 2024
1 parent 3c5d59e commit 5d5d897
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/formatting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5

- name: Black
uses: psf/black@stable
Expand All @@ -35,10 +35,10 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5

- name: Install interrogate
run: python -m pip install interrogate
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ jobs:
- { python-version: "3.10", os: ubuntu-latest }
- { python-version: "3.11", os: ubuntu-latest }
- { python-version: "3.12", os: ubuntu-latest }
- { python-version: "3.10", os: windows-latest }
- { python-version: "3.11", os: windows-latest }
- { python-version: "3.12", os: windows-latest }
- { python-version: "3.10", os: macos-latest }
- { python-version: "3.11", os: macos-latest }
- { python-version: "3.12", os: macos-latest }
Expand All @@ -58,9 +61,9 @@ jobs:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.config.python-version }}
cache: "pip"
Expand Down

0 comments on commit 5d5d897

Please sign in to comment.