Skip to content

Commit

Permalink
.github/workflows/unit_tests.yaml: Use ubuntu-22.04 and python 3.10
Browse files Browse the repository at this point in the history
Signed-off-by: Vallari Agrawal <[email protected]>
  • Loading branch information
VallariAg committed Jun 12, 2024
1 parent 51c49d2 commit 1cd680b
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/unit_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,13 @@ on: pull_request

jobs:
build:

runs-on: ubuntu-latest
name: Unit Tests on python${{ matrix.python }} via ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-22.04
python: "3.10"
steps:
- uses: actions/checkout@v4
- name: Setup Python
Expand Down

0 comments on commit 1cd680b

Please sign in to comment.