Bump mkdocs from 1.5.2 to 1.5.3 #73
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and test Poetry | |
on: | |
push: | |
branches-ignore: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Build and Test | |
steps: | |
- name: git-checkout | |
uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version-file: '.python-version' | |
- name: Setup Poetry | |
uses: Gr1N/setup-poetry@v8 | |
- name: Install all dependencies | |
run: poetry install | |
- name: Build | |
run: poetry run mkdocs build |