Skip to content

fix: await not necessary for setSync listSync #8

fix: await not necessary for setSync listSync

fix: await not necessary for setSync listSync #8

Workflow file for this run

name: Run tests
on:
push:
branches:
- master
tags:
- v*
pull_request:
branches:
- master
env:
PYTHON_VERSION: 3.13
jobs:
lint:
name: Validate Linter
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python & PDM
uses: pdm-project/setup-pdm@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: true
- name: Install the project dependencies
run: pdm install -d
- name: Lint the project
run: pdm check