diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7502b26..192d371 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -3,10 +3,11 @@ name: continuous-integration on: [push] jobs: - build: - runs-on: ubuntu-latest + test: + runs-on: $${{ matrix.os }} strategy: matrix: + os: [ubuntu-latest, windows-latest, macos-latest] python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v2