Skip to content

Merge pull request #63 from bento-platform/chore/update #150

Merge pull request #63 from bento-platform/chore/update

Merge pull request #63 from bento-platform/chore/update #150

Workflow file for this run

name: Lint
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.12"]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: python -m pip install poetry
- name: Install dependencies
run: python -m poetry install
- name: Lint
run: poetry run flake8 ./bento_aggregation_service ./tests