name: Win_Tests on: [push, pull_request] jobs: test: runs-on: ${{ matrix.os }} strategy: matrix: python-version: [3.10.4] os: [windows-latest] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - uses: actions/cache@v2 name: Configure pip caching with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }} restore-keys: | ${{ runner.os }}-pip- - name: Install dependencies run: | pip install --no-cache-dir -e . && pip install -r requirements.testing.txt - name: Run tests run: | tox