From 36e5a16cfb2e1ff8bed1dee2c766d42b6041b874 Mon Sep 17 00:00:00 2001 From: FarBo Date: Wed, 3 Nov 2021 16:20:47 +0100 Subject: [PATCH] run ci on windows --- .github/workflows/pytest.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index 3f50808ab..bfab15978 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -17,8 +17,13 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest] + os: [ubuntu-latest, windows-latest] python-version: [3.7, 3.8, 3.9] + exclude: + - os: windows-latest + python-version: 3.8 + - os: windows-latest + python-version: 3.9 env: DISPLAY: ':99.0' OS: ${{ matrix.os }} @@ -30,6 +35,7 @@ jobs: submodules: true - name: setup ubuntu-latest xvfb uses: ./.github/actions/setup-ubuntu-latest-xvfb + if: runner.os == 'Linux' - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2.2.2 with: