Skip to content

Commit b9b53e8

Browse files
committed
Add "windows-latest" to build matrix
1 parent 291e709 commit b9b53e8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
os: [ubuntu-latest, macos-latest]
15+
os: [ubuntu-latest, macos-latest, windows-latest]
1616
python-version: ["3.7", "3.8", "3.9"]
1717

1818
steps:
1919
- uses: actions/checkout@v2
2020
- name: Set up Python
21-
uses: actions/setup-python@v1
21+
uses: actions/setup-python@v2
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424
- name: Build docs

src/rules.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ LOCAL_DIR := $(patsubst %/src/,%,$(dir $(lastword $(MAKEFILE_LIST))))
2424
SRC_DIR := $(LOCAL_DIR)/src
2525
ENV_DIR := $(LOCAL_DIR)/.venv
2626
ACTIVATE := $(ENV_DIR)/bin/activate
27-
PYTHON := python3
27+
PYTHON := python
2828
PIP := $(PYTHON) -m pip
2929
SPHINXBUILD := $(ENV_DIR)/bin/sphinx-build
3030
SPHINXAUTOBUILD := $(ENV_DIR)/bin/sphinx-autobuild

0 commit comments

Comments
 (0)