Skip to content

added note about terminals #86

added note about terminals

added note about terminals #86

Workflow file for this run

name: GH actions test/lint
on: [push]
jobs:
ci:
runs-on: ubuntu-latest
environment: test
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- name: Run image
uses: abatilo/actions-poetry@v2
- name: Install packages
run: poetry install
- name: Run tests
env:
POSTGRES_URL: ${{ secrets.POSTGRES_URL }}
TEST_POSTGRES_URL: ${{ secrets.TEST_POSTGRES_URL }}
ENV: test
run: poetry run pytest src
- name: Run pylint
run: poetry run pylint src