Merge pull request #1 from nennigb/fix-test-np2 #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI-Windows | |
on: | |
push: | |
branches: [ '*' ] | |
paths-ignore: # Don't trigger on files that are updated by the CI | |
- README.md | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
activate-environment: polze_env | |
python-version: "3.11" | |
auto-activate-base: false | |
miniconda-version: "latest" | |
auto-update-conda: true | |
add-pip-as-python-dependency: true | |
- name: Install | |
shell: bash -l {0} | |
run: | | |
python -m pip install -e . | |
- name: Test | |
shell: bash -l {0} | |
run: | | |
python -m polze.test | |