diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7599e893..f5b1bab3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,11 +4,12 @@ on: [push] jobs: build: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} strategy: matrix: + os: [ubuntu-latest, windows-latest] python-version: [ '3.7', '3.8', '3.9', '3.10' ] - name: Python ${{ matrix.python-version }} sample + name: Python ${{ matrix.os }} ${{ matrix.python-version }} sample steps: - uses: actions/checkout@v2 with: