Skip to content

build(deps): bump actions/setup-python from 5.1.0 to 5.3.0 #659

build(deps): bump actions/setup-python from 5.1.0 to 5.3.0

build(deps): bump actions/setup-python from 5.1.0 to 5.3.0 #659

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
fetch-depth: 0
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: "3.12.3"
- name: Install
run: |
pip install poetry
poetry install --no-root
- name: Lint & format
run: |
poetry run pre-commit run --all-files
- name: Test
run: |
poetry run pytest