Do test with Windows on GitHub Actions

This commit is contained in:
Takeshi KOMIYA
2020-02-23 14:11:20 +09:00
parent ee4c7d3a68
commit 27f85c7f4e

21
.github/workflows/main.yml vendored Normal file
View File

@@ -0,0 +1,21 @@
name: CI on Windows
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
architecture: [x86, x64]
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
architecture: ${{ matrix.architecture }}
- name: Install dependencies
run: pip install -U tox
- name: Run Tox
run: tox -e py