Skip to content

Commit

Permalink
upgrade checkout and set-up python actions
Browse files Browse the repository at this point in the history
  • Loading branch information
gnzsnz committed Aug 15, 2024
1 parent 9c941f1 commit 0496e6d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,16 @@ jobs:
python-version: [ 3.8, 3.9, "3.10", "3.11", "3.12" ]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff mypy pytest .
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install mypy pytest .[dev]
- name: Ruff static code analysis
run: |
Expand Down

0 comments on commit 0496e6d

Please sign in to comment.