Skip to content

Remove envirnoment variable overrides #58

Remove envirnoment variable overrides

Remove envirnoment variable overrides #58

Workflow file for this run

---
name: Lint and Test
on:
push:
branches-ignore:
- main
workflow_dispatch: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
jobs:
lint-and-test:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
python-version: [ 3.12 ]
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pipenv"
- name: Install pipenv
run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
- name: Install dependencies
run: pipenv install --dev
- name: Check Airflow Constraints
run: make compare-dependencies
- name: Lint the role
run: make lint
- name: Run Pytest
run: make test