Skip to content

Introduce a new JSON notifier #288

Introduce a new JSON notifier

Introduce a new JSON notifier #288

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Lint & Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: "1.3"
- name: Install poetry dependencies
run: poetry install --no-interaction --no-root
- name: Install poethepoet to use poe
run: pip install poethepoet
- name: Linting
run: poe lint
- name: Testing
run: poe tests