Skip to content

Support sync function for observation #13

Support sync function for observation

Support sync function for observation #13

Workflow file for this run

name: Linters
on:
push:
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8.16']
steps:
- uses: actions/checkout@v3
- name: Set up PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pdm sync -dG lint
- name: Run lint
run: pdm run ruff check
- name: Run format check
run: pdm run ruff format --check
- name: Run mypy
run: pdm run mypy src