Skip to content
This repository has been archived by the owner on May 7, 2023. It is now read-only.

PR: Add notice that plugin is no longer maintained #23

PR: Add notice that plugin is no longer maintained

PR: Add notice that plugin is no longer maintained #23

Workflow file for this run

name: Windows tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
windows:
name: Windows Py${{ matrix.PYTHON_VERSION }}
runs-on: windows-latest
env:
CI: True
PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }}
RUNNER_OS: 'windows'
strategy:
fail-fast: false
matrix:
PYTHON_VERSION: ['3.6', '3.7', '3.8']
steps:
- name: Checkout branch
uses: actions/checkout@v2
- name: Install Conda
uses: goanpeca/setup-miniconda@v1
with:
activate-environment: test
auto-update-conda: true
auto-activate-base: false
python-version: ${{ matrix.PYTHON_VERSION }}
- name: Install package dependencies
shell: bash -l {0}
run: conda install --file requirements/conda.txt -y -q
- name: Install test dependencies
shell: bash -l {0}
run: conda install -c spyder-ide --file requirements/tests.txt -y -q
- name: Install Package
shell: bash -l {0}
run: pip install --no-deps -e .
- name: Show environment information
shell: bash -l {0}
run: |
conda info
conda list
- name: Run tests
shell: bash -l {0}
run: pytest spyder_memory_profiler -x -vv
timeout-minutes: 10