Skip to content

Upgrade to bswck/skeleton@de6442b #66

Upgrade to bswck/skeleton@de6442b

Upgrade to bswck/skeleton@de6442b #66

Workflow file for this run

name: "Lint"
on: ["push"]
jobs:
lint:
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: [
"3.8",
"3.9",
"3.10",
"3.11",
"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}}"
- uses: "actions/checkout@v3"
- name: "Install Ruff"
run: |
pipx install ruff
- name: "Analyze the code with Ruff"
run: "ruff ."