Skip to content

Replace hard-coded attribute keys #181

Replace hard-coded attribute keys

Replace hard-coded attribute keys #181

Workflow file for this run

name: CI
on: [push, workflow_dispatch, pull_request]
jobs:
lint_and_test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: pytest
run: pytest
- name: black
run: black . --check --diff
- name: mypy
run: mypy tucan