diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8741b08..7afde1a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,11 @@ jobs: run: pre-commit run --all-files build: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, windows-latest] + steps: - uses: actions/checkout@v2 - name: Set up Python 3.7 @@ -31,11 +35,8 @@ jobs: with: python-version: 3.7 - name: Install pyodi - shell: bash -l {0} - run: rm -rf .eggs && pip install .[dev] + run: pip install .[dev] - name: Test with pytest - shell: bash -l {0} run: pytest - name: Generate docs - shell: bash -l {0} run: mkdocs build