Skip to content

fix(deps): pin brace-expansion, js-yaml, and aiohttp>=3.14.3 #370

fix(deps): pin brace-expansion, js-yaml, and aiohttp>=3.14.3

fix(deps): pin brace-expansion, js-yaml, and aiohttp>=3.14.3 #370

# 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@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.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