Skip to content
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.

changelog fix

changelog fix #40

Workflow file for this run

name: CI Pipeline
on:
push:
branches:
- "**"
tags-ignore:
- "v.*.*.*"
jobs:
test:
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.9"]
defaults:
run:
shell: bash
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Python v${{matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version}}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: false
virtualenvs-in-project: true
- name: Install dependencies
run: |
make venv
- name: Linting
run: |
make lint
- name: Tests
run: |
make test