Skip to content

Merge pull request #305 from DataRecce/feature/drc-325-dbt-18-compati… #897

Merge pull request #305 from DataRecce/feature/drc-325-dbt-18-compati…

Merge pull request #305 from DataRecce/feature/drc-325-dbt-18-compati… #897

Workflow file for this run

name: Run Python Flake8 and Unit Tests
on:
push:
branches:
- main
paths:
- "recce/**"
pull_request:
branches:
- main
paths:
- "recce/**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
cache: "pip" # caching pip dependencies
- name: Install flake8
run: pip install flake8
- name: Run flake8
run: make flake8
- name: Cache tox environments
uses: actions/cache@v2
with:
path: .tox
key: ${{ runner.os }}-tox-${{ hashFiles('tox.ini') }}-3.11
restore-keys: |
${{ runner.os }}-tox-${{ hashFiles('tox.ini') }}-
${{ runner.os }}-tox-
- name: Run tests
run: |
make test