diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-02-23 14:11:20 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-05-28 01:51:22 +0900 |
commit | 27f85c7f4e3fa2e32fdcec050d301b210fb1b711 (patch) | |
tree | 7c433b7bd18e229156319246bcb31e73906d9ed7 /.github | |
parent | ee4c7d3a68734a6cbfc787d9b9e80cd5c260fdcb (diff) | |
download | sphinx-git-27f85c7f4e3fa2e32fdcec050d301b210fb1b711.tar.gz |
Do test with Windows on GitHub Actions
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/main.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 000000000..fa2c1154a --- /dev/null +++ b/.github/workflows/main.yml @@ -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 |