Skip to content

Bump types-setuptools from 69.5.0.20240415 to 70.1.0.20240627 #376

Bump types-setuptools from 69.5.0.20240415 to 70.1.0.20240627

Bump types-setuptools from 69.5.0.20240415 to 70.1.0.20240627 #376

Workflow file for this run

name: Lint
env:
POETRY_VERSION: "1.6.1"
# Set the terminal so `tput` will work
TERM: "linux"
on:
pull_request:
types: [opened, reopened, synchronize]
push:
branches:
- main
permissions:
contents: read
jobs:
run-tests:
name: Python linters
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
fetch-depth: 0
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Set up Poetry
run: |
pip install poetry==${{ env.POETRY_VERSION }}
- name: Install packages
run: |
poetry install
- name: Lint
run: |
./scripts/lint check .
- name: Check poetry
run: |
poetry check
poetry lock --check