Skip to content

Implement simple diff view + bug fixes #21

Implement simple diff view + bug fixes

Implement simple diff view + bug fixes #21

Workflow file for this run

name: CI
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install dependencies
run: poetry install
- name: Analysing the code with Black
run: |
poetry run black --check src/**/*.py
- name: Run unit tests
run: |
poetry run python test.py