Skip to content

release

release #59

Workflow file for this run

name: build
on:
push:
branches-ignore:
- deploy
tags-ignore:
- v*
jobs:
build:
runs-on: ubuntu-latest
env:
PYTHON_ENV: ci
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: pip install -U pip poetry
- name: Install dependencies
run: poetry install --all-extras
- name: run lint
run: make lint
- name: run tests
run: make test
- name: upload coverage reports to codecov
if: matrix.python-version == '3.12'
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./build/coverage.xml
book:
runs-on: ubuntu-latest
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
needs:
- build
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.12
uses: actions/setup-python@v3
with:
python-version: "3.12"
- name: Install all dev dependencies
run: make install-dev
- name: build book
run: make book
- name: publish book
run: make publish-book
- name: publish
if: ${{ github.ref == 'refs/heads/main' && github.event.head_commit.message == 'release' }}
run: make publish