Skip to content

Commit

Permalink
run tests on py 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
ialarmedalien committed Aug 16, 2024
1 parent c421e76 commit 00011e6
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/run_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]

steps:
- name: Repo checkout
uses: actions/checkout@main

- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python 3.12
uses: actions/setup-python@main
with:
python-version: ${{ matrix.python-version }}
python-version: 3.12

- name: Install Poetry
uses: snok/install-poetry@main

Check warning

Code scanning / Semgrep (reported by Codacy)

An action sourced from a third-party repository on GitHub is not pinned to a full length commit SHA. Pinning an action to a full length commit SHA is currently the only way to use an action as an immutable release. Warning

An action sourced from a third-party repository on GitHub is not pinned to a full length commit SHA. Pinning an action to a full length commit SHA is currently the only way to use an action as an immutable release.
Expand Down Expand Up @@ -59,17 +57,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]

steps:
- name: Repo checkout
uses: actions/checkout@main

- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python 3.12
uses: actions/setup-python@main
with:
python-version: ${{ matrix.python-version }}
python-version: 3.12

- name: Install dependencies
id: install_deps
Expand Down

0 comments on commit 00011e6

Please sign in to comment.