We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7350aac commit 42f1607Copy full SHA for 42f1607
.github/workflows/ci.yaml
@@ -14,20 +14,17 @@ jobs:
14
15
runs-on: ubuntu-latest
16
17
+ container: python:3.7-alpine
18
+
19
steps:
20
- name: "Checkout"
21
uses: actions/checkout@v2
22
- - name: "Set up Python 3.7"
- uses: actions/setup-python@v1
23
- with:
24
- python-version: '3.7' # Semantic version range syntax or exact version of a Python version
25
-
26
- name: "Display Python version"
27
run: python -c "import sys; print(sys.version)"
28
29
- name: "Install Sphinx dependencies"
30
- run: sudo apt-get install python-dev build-essential
+ run: apk add --no-cache git make
31
32
- name: "Install Sphinx"
33
run: pip install --user sphinx
0 commit comments