Skip to content

Commit

Permalink
python version 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjaymjoshi committed May 14, 2023
1 parent 9e6f876 commit b8b4bdb
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,17 @@ on:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]

steps:
- uses: actions/checkout@v2

- name: Setup Python
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: 3.9
python-version: ${{ matrix.python-version }}

- name: Install dependencies with pipenv
run: |
Expand Down

0 comments on commit b8b4bdb

Please sign in to comment.