Skip to content

docs: add conference poster and assets #137

docs: add conference poster and assets

docs: add conference poster and assets #137

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: Python application
on:
push:
branches: [ develop, main ]
pull_request:
branches: [ develop, main ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade "poetry<1.2"
poetry install
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
poetry run flake8 . --select=E9,F63,F7,F82
# exit-zero treats all errors as warnings
poetry run flake8 . --exit-zero
- name: Test with pytest
run: |
poetry run pytest