Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2021-12-15 01:25:48 -08:00
parent b0c71ad0f5
commit c3cd16858a

View File

@ -15,23 +15,21 @@ jobs:
generate-docs: generate-docs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python
uses: actions/setup-python@v2 uses: actions/setup-python@v2
with: with:
python-version: ${{ matrix.python-version }} python-version: 3.x
# Installation instructions are from: https://python-poetry.org/docs/ # Installation instructions are from: https://python-poetry.org/docs/
- name: Install dependencies - name: Install dependencies
shell: bash shell: bash
run: | run: |
pip install \ pip install \
poetry poetry \
pydoc
- name: Build - name: Build
shell: bash shell: bash