Skip to content

Commit

Permalink
move build docs to only one python version
Browse files Browse the repository at this point in the history
Signed-off-by: Michele Dolfi <[email protected]>
  • Loading branch information
dolfim-ibm committed Jul 10, 2022
1 parent cddcf02 commit 455c9c9
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:
POETRY_VIRTUALENVS_CREATE: false

jobs:
test-style-and-build-docs:
test-styles:
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -31,5 +31,18 @@ jobs:
run: poetry install
- name: Run styling check
run: pre-commit run --all-files
build-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pip install poetry
- uses: actions/setup-python@v4
with:
python-version: 3.x
cache: 'pip'
cache-dependency-path: 'poetry.lock'
- name: Install dependencies
run: poetry install
- name: Build docs
run: mkdocs build --verbose --clean

0 comments on commit 455c9c9

Please sign in to comment.