chore(deps): bump build from 1.2.1 to 1.2.2 in the python-packages group #103
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: Python application | |
on: | |
# Uncomment to enable triggering jobs on each push to main | |
# push: | |
# branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
merge_group: | |
types: [checks_requested] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools | |
python -m pip install -r requirements.txt | |
python -m pip install -e . | |
- name: Pre-commit checks | |
run: | | |
python -m pip install pre-commit | |
pre-commit run --all-files | |
- name: Run tests | |
run: | | |
python -m pytest | |
- name: Sphinx documentation build | |
run: | | |
make docs | |
# This deployment will only trigger if push to main trigger is uncommented above | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v4 | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | |
with: | |
publish_branch: gh-pages | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: docs/build/html/ | |
force_orphan: true | |
# TODO in the future | |
# - name: Build and push Docker image | |
# uses: docker/build-push-action@v2 | |
# with: | |
# context: . | |
# push: true | |
# tags: nathfitz/test:latest |