Skip to content

build(deps): bump actions/setup-python from 6.3.0 to 7.0.0 #83

build(deps): bump actions/setup-python from 6.3.0 to 7.0.0

build(deps): bump actions/setup-python from 6.3.0 to 7.0.0 #83

Workflow file for this run

name: Python CI
on:
push:
branches:
- main
pull_request:
env:
LATEST_PY: "3.14"
LATEST_NODE: "24.x"
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
contents: read
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- name: Set up Python ${{ env.LATEST_PY }}
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: ${{ env.LATEST_PY }}
- name: Set up Node.js ${{ env.LATEST_NODE }}
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: ${{ env.LATEST_NODE }}
- name: Install dependencies
run: |
pip install -U .
- name: Lint with flake8 & Prettier
run: |
bash scripts/lint.sh
test:
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
contents: read
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- name: Set up Python ${{ env.LATEST_PY }}
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: ${{ env.LATEST_PY }}
- name: Install dependencies
run: |
pip install -U .
- name: Test with pytest
run: |
pytest -vv