Skip to content

Bump apache-airflow from 2.6.3 to 2.7.3 #266

Bump apache-airflow from 2.6.3 to 2.7.3

Bump apache-airflow from 2.6.3 to 2.7.3 #266

Workflow file for this run

---
name: Pull Request
on:
push:
branches:
- master
pull_request:
env:
PYTHON_VERSION: '3.9'
jobs:
linting:
name: Lint files
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Setup pre-commit cache
uses: actions/cache@v3
with:
path: |
~/.cache/pre-commit
key: ${{ runner.os }}-${{ env.PYTHON_VERSION }}-pre-commit-${{ hashFiles('**/.pre-commit-config.yaml*') }}
restore-keys: |
${{ runner.os }}-${{ env.PYTHON_VERSION }}-pre-commit-
- name: Create environment
run: |
pip install pre-commit
pre-commit run --all-files