Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ebellocchia committed Feb 9, 2024
1 parent 2eaf129 commit ca7f9f4
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 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"]
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 Down

0 comments on commit ca7f9f4

Please sign in to comment.