Skip to content

Bump pydantic from 2.6.1 to 2.6.2 (#27) #100

Bump pydantic from 2.6.1 to 2.6.2 (#27)

Bump pydantic from 2.6.1 to 2.6.2 (#27) #100

Workflow file for this run

# This file was generated from bswck/skeleton@0.0.2rc-161-g1ae7659.
# Instead of changing this particular file, you might want to alter the template:
# https://github.com/bswck/skeleton/tree/0.0.2rc-161-g1ae7659/project/.github/workflows/lint.yml.jinja
# IMPORTANT!
# Pinned versions of actions and Poetry are managed in a different repository.
# Do not submit PRs to this file unless for this repo specifically.
# To change this workflow globally, submit a PR to https://github.com/bswck/skeleton.
name: "Lint"
on: ["push"]
jobs:
lint:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4"
- name: "Install Poetry"
run: "pipx install poetry==1.7.1"
- name: "Set up Python 3.8"
uses: "actions/setup-python@v5"
with:
cache: "poetry"
- name: "Install the project"
run: "poetry install --only=dev,dev-skeleton"
- name: "Analyze the code with Ruff"
run: "poetry run ruff check ."