Skip to content

Update dependency npm-run-all2 to v7 #2379

Update dependency npm-run-all2 to v7

Update dependency npm-run-all2 to v7 #2379

Workflow file for this run

name: Python CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Install Poetry
run: pipx install poetry
- name: Setup Python
uses: actions/setup-python@v5 # it will resolve from the .python-version file
with:
cache: poetry # it will automatically detect poetry config and cache .venv
# https://github.com/actions/setup-python/blob/main/docs/advanced-usage.md#caching-packages
- run: poetry install
- name: Lint
run: make lint-py
- name: Test
run: make test