Bump django from 5.1.2 to 5.1.5 in /grai-server/app #260
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Openlineage Integration CI | |
on: | |
pull_request: | |
paths: | |
- "grai-integrations/source-openlineage/**" | |
- "grai-client/**" | |
- "grai-server/**" | |
- ".github/workflows/integration-openlineage-ci.yml" | |
concurrency: | |
group: ${{ github.ref }}-openlineage-ci | |
cancel-in-progress: true | |
env: | |
project_dir: "grai-integrations/source-openlineage" | |
py_ver: "${{ vars.PY_VER }}" | |
poetry_ver: "${{ vars.POETRY_VER }}" | |
jobs: | |
lint-integration-openlineage: | |
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 }}" | |
- run: pip install black isort | |
- run: | | |
black . --check | |
isort . --profile black --check | |
tests-integration-openlineage: | |
needs: lint-integration-openlineage | |
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 OpenLineage Tests | |
run: poetry run pytest |