Skip to content

Bump jinja2 from 3.1.2 to 3.1.3 in /grai-integrations/source-looker #42

Bump jinja2 from 3.1.2 to 3.1.3 in /grai-integrations/source-looker

Bump jinja2 from 3.1.2 to 3.1.3 in /grai-integrations/source-looker #42

name: Looker Integration CI
on:
pull_request:
paths:
- "grai-integrations/source-looker/**"
- ".github/workflows/integration-looker-ci.yml"
env:
py_ver: "3.10"
poetry_ver: "1.3.2"
project_dir: "grai-integrations/source-looker"
jobs:
lint-integration-looker:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ${{ env.project_dir }}
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Install Python
id: setup-python
uses: actions/setup-python@v4
with:
python-version: "${{ env.py_ver }}"
- run: pip install black isort
- run: |
black . --check
isort . --profile black
tests-integration-looker:
needs: lint-integration-looker
runs-on: ubuntu-latest
defaults:
run:
working-directory: ${{ env.project_dir }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "${{ env.py_ver }}"
- uses: abatilo/actions-poetry@v2
with:
poetry-version: "${{ env.poetry_ver }}"
- run: poetry install
- run: poetry run pytest