Skip to content

feat: Created base layout for file preview component #2

feat: Created base layout for file preview component

feat: Created base layout for file preview component #2

Workflow file for this run

name: Linting and type checking
on:
- push
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.12']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Linting
run: poetry run ruff check
- name: Type checking
run: poetry run mypy ignori