Skip to content

Commit 7bad69e

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

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/docs.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,24 @@ on:
55
branches:
66
- master
77

8+
defaults:
9+
run:
10+
shell: sh
11+
812
jobs:
913
documentation:
1014
name: Build docs on ${{ matrix.os }} using Python ${{ matrix.python-version }}
1115
runs-on: ${{ matrix.os }}
1216

1317
strategy:
1418
matrix:
15-
os: [ubuntu-latest, macos-latest]
19+
os: [ubuntu-latest, macos-latest, windows-latest]
1620
python-version: ["3.7", "3.8", "3.9"]
1721

1822
steps:
1923
- uses: actions/checkout@v2
2024
- name: Set up Python
21-
uses: actions/setup-python@v1
25+
uses: actions/setup-python@v2
2226
with:
2327
python-version: ${{ matrix.python-version }}
2428
- 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)