Skip to content

Add release tail and changes #212

Add release tail and changes

Add release tail and changes #212

Workflow file for this run

name: Pytest
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
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'