Skip to content

Commit

Permalink
Extend tests to multiple versions and pin action versions (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
kunaltyagi authored Oct 8, 2023
1 parent 115983e commit 0c91292
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,15 @@ on:
jobs:
Run-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
- uses: actions/checkout@v4.1.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.7.1
with:
python-version: 3.11
python-version: ${{ matrix.python-version }}

- name: Run NSIQCppStyle tests
timeout-minutes: 5
Expand Down

0 comments on commit 0c91292

Please sign in to comment.