xonsh/.github/workflows/pytest-windows-3.6.yml
Anthony Scopatz 526dd354ff
goanpeca -> conda-incubator (#3857)
* goanpeca -> conda-incubator

* elm incubator fix
2020-10-08 14:54:03 -04:00

33 lines
846 B
YAML

name: pytest windows 3.6
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
python-version: [3.6]
name: Python ${{ matrix.python-version }} ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Setup conda
uses: conda-incubator/setup-miniconda@v1
with:
activate-environment: ${{matrix.python-version}}-xonsh-test
environment-file: ci/environment-${{matrix.python-version}}.yml
update-conda: true
python-version: ${{ matrix.python-version }}
condarc-file: ci/condarc.yml
- shell: bash -l {0}
run: |
python -m pip install . --no-deps
python -m xonsh run-tests.xsh --timeout=240