Add create and update kwargs usage #19
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
name: lint ${{ matrix.python-version }} | |
strategy: | |
matrix: | |
python-version: [ '3.10', '3.11', '3.12' ] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup pdm | |
uses: pdm-project/setup-pdm@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: pdm install -G lint | |
- name: Run lint | |
run: pdm lint |