Skip to content

Merge pull request #162 from code42/INTEG-3042/pydantic-upgrade #711

Merge pull request #162 from code42/INTEG-3042/pydantic-upgrade

Merge pull request #162 from code42/INTEG-3042/pydantic-upgrade #711

Workflow file for this run

name: style
on:
push:
branches:
- main
tags:
- v*
pull_request:
jobs:
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Ensure latest pip
run: python -m pip install --upgrade pip
- name: Install click
run: pip install click===8.1.8
- name: Install hatch
run: pip install hatch==1.14.0
- name: Run style checks
run: hatch run style:check