Skip to content

Bump black from 23.12.1 to 24.1.1 #263

Bump black from 23.12.1 to 24.1.1

Bump black from 23.12.1 to 24.1.1 #263

Workflow file for this run

---
name: Main
on:
- pull_request
jobs:
lint:
name: Run black/pylint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade -e ".[develop]"
python -m pip install --upgrade -r requirements.txt
- name: Run pylint
run: |
python -m pylint dags tests include
- name: Run black
uses: psf/black@stable
test:
name: Run pytest
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade -e ".[testing]"
python -m pip install --upgrade -r requirements.txt
- name: Run pytest
run: |
python -m pytest -vvv