Skip to content

PB-318: Increment version to 0.17.0 #147

PB-318: Increment version to 0.17.0

PB-318: Increment version to 0.17.0 #147

name: Run linter and formatter
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
jobs:
linting_formatting:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "poetry"
- name: Install dependencies
run: poetry install
- name: Run linter
run: sh ci/run_linter.sh
- name: Run formatter
run: sh ci/run_formatter.sh