Skip to content

Commit

Permalink
Add different OS, temporarily removed Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
ebellocchia committed Feb 9, 2024
1 parent b990a3c commit fff29b3
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This workflow will install Python dependencies and run tests with different Python versions
# This workflow will install Python dependencies and run tests with different Python versions and OS

name: Build & Test

Expand All @@ -9,12 +9,16 @@ on:
branches: [ "master" ]

jobs:
build:
runs-on: ubuntu-latest
build_test:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] # 3.12 temporarily removed, waiting for coincurve fix
os:
- ubuntu-latest
- macOS-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -25,7 +29,6 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Run tests
run: |
pytest

0 comments on commit fff29b3

Please sign in to comment.