Merge pull request #705 from Alexander-N/gh-actions

Trigger windows tests on pull requests
This commit is contained in:
Yuji Kanagawa 2019-12-28 21:40:51 +09:00 committed by GitHub
commit 454c7f6eaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 22 additions and 23 deletions

View File

@ -1,34 +1,33 @@
name: Test name: Test
on: [push] on: [push, pull_request]
jobs: jobs:
build: build:
runs-on: windows-latest runs-on: windows-latest
strategy: strategy:
max-parallel: 3 max-parallel: 4
matrix: matrix:
python-version: [3.5, 3.6, 3.7] python-version: [3.5, 3.6, 3.7]
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1 uses: actions/setup-python@v1
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Set Python PATH - name: Set Python PATH
run: ci/actions/setup run: ci/actions/setup
- name: Install Rust - name: Install Rust
uses: actions-rs/toolchain@v1 uses: actions-rs/toolchain@v1
with: with:
toolchain: nightly toolchain: nightly
default: true default: true
- name: Build - name: Build
run: cargo build --verbose run: cargo build --verbose
- name: Install test dependencies - name: Install test dependencies
run: | run: |
python -m pip install -U pip setuptools python -m pip install -U pip setuptools
pip install setuptools-rust pytest pytest-benchmark tox tox-venv pip install setuptools-rust pytest pytest-benchmark tox tox-venv
- name: Test - name: Test
run: ci/actions/test run: ci/actions/test