Skip to content

Update github-actions-pins-minor-updates to v8.2.0 #341

Update github-actions-pins-minor-updates to v8.2.0

Update github-actions-pins-minor-updates to v8.2.0 #341

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python application
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Set up uv
uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
- name: Install dependencies
run: make install
- name: Lint
continue-on-error: true
run: make lint
- name: Type check
continue-on-error: true
run: make type-check