Skip to content

Commit

Permalink
Merge pull request #85 from bretterer/ci
Browse files Browse the repository at this point in the history
Adjust CI to test multiple python version builds
  • Loading branch information
natekspencer authored Jun 9, 2024
2 parents e0d02e0 + 0ef16c4 commit 7eeb3b6
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,24 @@ name: Run Python Tests
on:
push:
branches:
- "*"
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Install Python 3
- name: Install Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: ${{ matrix.python-version }}
- name: Setup Poetry
uses: abatilo/actions-poetry@v2
- name: Install dependencies
Expand Down

0 comments on commit 7eeb3b6

Please sign in to comment.