Skip to content

Commit

Permalink
build on python 3.8 to 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanAugust committed Jan 31, 2024
1 parent 34413df commit ff8eed1
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,17 @@ jobs:
run: pytest tests/

build:
name: build
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.8, 3.9, "3.10", "3.11" ]
name: Build on Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit ff8eed1

Please sign in to comment.