Files
sphinx/.github/workflows/main.yml
2020-02-23 14:11:20 +09:00

22 lines
410 B
YAML

name: CI on Windows
on: [push]
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