Skip to content

Authenticate and generate token for AgavePy #21

Authenticate and generate token for AgavePy

Authenticate and generate token for AgavePy #21

Workflow file for this run

name: Build, Lint, and Test
on: [push, pull_request]
jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version: ["3.9"]
poetry-version: ["1.6.1"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install the project dependencies
run: poetry install
- name: Lint with black
run: poetry run black --check .
- name: Run the automated tests
run: poetry run pytest -v