Skip to content

Commit

Permalink
feat: add ci-cd workflows
Browse files Browse the repository at this point in the history
Signed-off-by: develop-cs <[email protected]>
  • Loading branch information
develop-cs committed Mar 22, 2024
1 parent 19b8339 commit 82f725c
Show file tree
Hide file tree
Showing 2 changed files with 108 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/ci-cd-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
name: Documentation CI/CD
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
branches:
- main

jobs:
check:
if: ${{ github.actor != 'dependabot[bot]' }}
name: Check docs build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install package with optional dependency 'doc'
run: |
python -m pip install --upgrade pip
pip install .[doc]
- name: Run MkDocs build
working-directory: ./docs
run: mkdocs build
publish:
if: success() && startsWith(github.ref, 'refs/tags')
name: Publish docs on GH Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install package with optional dependency 'doc'
run: |
python -m pip install --upgrade pip
pip install .[doc]
- name: Run MkDocs deploy
working-directory: ./docs
run: mkdocs gh-deploy

59 changes: 59 additions & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
---
name: Package CI/CD
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
branches:
- main

jobs:
pre-commit:
name: Apply pre-commit hooks
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install extra dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev,test]
- name: Cache pre-commit hooks
uses: action/cache@v4
with:
path: ~/.cache/pre-commit
key: ${{ runner.os }}-precommit-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Run pre-commit hooks
run: pre-commit run --all-files
publish:
if: success() && startsWith(github.ref, 'refs/tags')
name: Publish to PyPI
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python version
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Build package
run: |
python -m pip install --upgrade build
python -m build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}

0 comments on commit 82f725c

Please sign in to comment.