Skip to content

Implement release and commit sets #216

Implement release and commit sets

Implement release and commit sets #216

Workflow file for this run

name: Pytest
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v2
- name: Install libgit
run: sudo apt install -y libgit2-dev
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Test with pyTest
run: |
poetry run pytest -m 'not local'