Skip to content

Feat/htmx 2

Feat/htmx 2 #199

Workflow file for this run

# file: .github/workflows/build.yaml
name: build
on:
pull_request:
branches:
- main
push:
branches:
- main
tags-ignore:
- "*.*"
env:
PYTHON_VERSION: "3.12"
POETRY_VERSION: "1.6.1"
jobs:
test:
runs-on: ubuntu-latest
steps:
#----------------------------------------------
# check-out repo and set-up python
#----------------------------------------------
- name: Check out repository
uses: actions/checkout@v4
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
#----------------------------------------------
# ----- install & configure poetry -----
#----------------------------------------------
- name: Install Poetry
uses: snok/install-poetry@v1.3.4
with:
version: ${{ env.POETRY_VERSION }}
virtualenvs-create: true
virtualenvs-in-project: true
#----------------------------------------------
# load cached venv if cache exists
#----------------------------------------------
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
#----------------------------------------------
# install dependencies if cache does not exist
#----------------------------------------------
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install
#----------------------------------------------
# run linter suite
#----------------------------------------------
- name: Run linters
run: poetry run ruff check .
#----------------------------------------------
# run test suite
#----------------------------------------------
- name: Run tests
run: poetry run pytest
#----------------------------------------------
# Send code coverage to code climate
#----------------------------------------------
- name: Submit coverage to code climate
uses: paambaati/codeclimate-action@v5.0.0
continue-on-error: true
env:
CI: "true"
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: poetry run pytest --cov-branch --cov-report xml --cov=src src