attempting to fix OutputFileValidator so that whatever views are specified via ignore_views_for_output are not used to generate the output files and schema and are not used for comparison #219
This file contains 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: Build and Test | |
# Controls when the action will run. Triggers the workflow on push or pull request | |
# events but only for the master branch | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build_and_test: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
steps: | |
# Checks-out your repository | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v3 | |
with: | |
python-version: '3.12' | |
# show docker version | |
- name: show docker version | |
run: docker --version | |
- name: pre-commit | |
run: make run-pre-commit | |
# setup and install everything and run tests | |
- name: up | |
run: make up | |
- name: tests | |
run: make tests |