Skip to content

Commit

Permalink
update action version
Browse files Browse the repository at this point in the history
  • Loading branch information
purarue committed Oct 25, 2024
1 parent a95daa5 commit 7c3b53d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest]
python-version: [3.9, "3.10", "3.11", "3.12"]
python-version: [ 3.9, "3.10", "3.11", "3.12"]
exclude:
[
{ platform: macos-latest, python-version: "3.8" },
{ platform: macos-latest, python-version: "3.9" },
{ platform: macos-latest, python-version: "3.10" },
{ platform: macos-latest, python-version: "3.11" },
Expand All @@ -23,17 +24,17 @@ jobs:
steps:
- run: echo "$HOME/.local/bin" >> $GITHUB_PATH

- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0 # nicer to have all git history when debugging/for tests

- run: ./install

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: .coverage.mypy-${{ matrix.platform }}_${{ matrix.python-version }}
path: .coverage.mypy/

0 comments on commit 7c3b53d

Please sign in to comment.