Skip to content

Bump strawberry-graphql from 0.220.0 to 0.243.0 in /grai-server/app #120

Bump strawberry-graphql from 0.220.0 to 0.243.0 in /grai-server/app

Bump strawberry-graphql from 0.220.0 to 0.243.0 in /grai-server/app #120

name: Looker Integration CI
on:
pull_request:
paths:
- "grai-integrations/source-looker/**"
- "grai-client/**"
- "grai-server/**"
- ".github/workflows/integration-looker-ci.yml"
env:
project_dir: "grai-integrations/source-looker"
py_ver: "${{ vars.PY_VER }}"
poetry_ver: "${{ vars.POETRY_VER }}"
concurrency:
group: ${{ github.ref }}-integration-looker-ci
cancel-in-progress: true
jobs:
lint-integration-looker:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ${{ env.project_dir }}
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Install Python
id: setup-python
uses: actions/setup-python@v5
with:
python-version: "${{ env.py_ver }}"
- uses: psf/black@stable
with:
src: ${{ env.project_dir }}
options: "--check --verbose"
version: "~= 24.0"
- uses: isort/isort-action@master
with:
configuration: "--profile black"
isortVersion: "5.13.2"
tests-integration-looker:
needs: lint-integration-looker
runs-on: ubuntu-latest
defaults:
run:
working-directory: ${{ env.project_dir }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "${{ env.py_ver }}"
- uses: abatilo/actions-poetry@v2
with:
poetry-version: "${{ env.poetry_ver }}"
- run: poetry install
- name: Run Looker Tests
run: poetry run pytest