Skip to content

Testing new coverage tool #15

Testing new coverage tool

Testing new coverage tool #15

Workflow file for this run

name: Make build
on:
push:
branches:
main
pull_request:
branches:
main
env:
POETRY_HOME: ${{vars.POETRY_HOME}}
POETRY: ${{vars.POETRY}}
jobs:
make-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 Poetry and dependencies
run: ./scripts/poetry-install.sh
- name: Make build
run: $POETRY build
- uses: actions/upload-artifact@v4
with:
name: dist
path: ./dist