Update duck.sql #22
Workflow file for this run
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
# This workflow will check out the code, install DuckDb then run data quality tests | |
# For more information see: https://dev.to/optnc/effortless-data-quality-wduckdb-on-github-2mkb | |
name: 🧪 Check data | |
on: [pull_request, push] | |
jobs: | |
test: | |
name: 🧪 Verify data | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📥 Checkout code | |
uses: actions/checkout@v4 | |
- name: ⚙️ Install DuckDB | |
uses: opt-nc/[email protected] | |
with: | |
version: ${{ vars.VERSION_DUCKDB}} | |
- name : 🕵️♂️ Check data integrity | |
run: | | |
duckdb < duck.sql |