Skip to content

Bump urllib3 from 1.26.11 to 1.26.17 #43

Bump urllib3 from 1.26.11 to 1.26.17

Bump urllib3 from 1.26.11 to 1.26.17 #43

Workflow file for this run

# This workflow will install Python dependencies, Unit testing, Publishing PyPI package
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Main Workflow
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Build wheels and source tarball
run: >-
poetry build
- name: Build docs
run: |
poetry install -E doc
poetry run mkdocs build
- name: Show temporary files
run: >-
ls -l
- name: Publish docs
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site