Skip to content

Feature: Update packages and Evidence to USQL #70

Feature: Update packages and Evidence to USQL

Feature: Update packages and Evidence to USQL #70

Workflow file for this run

on:
pull_request:
branches:
- main
jobs:
ci:
name: CI Check
environment: ci
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Setup Python
uses: actions/setup-python@v5.0.0
with:
python-version: "3.11.5"
- name: Setup Node
uses: actions/setup-node@v4.0.2
with:
node-version: 20.x
- name: Install Python requirements
run: pip install -r requirements.txt
- name: Run EL
run: python3 el.py -lc
- name: Build transformations
run: |
dbt deps
dbt build
sqlfluff lint models
- name: Build Evidence
run: |
npm install --prefix ./reports
npm run sources --prefix ./reports
npm run build --prefix ./reports