Skip to content
This repository has been archived by the owner on Jul 19, 2024. It is now read-only.

Commit

Permalink
Add quality check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
stefannegele committed Nov 18, 2023
1 parent 441d349 commit 6447436
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Quality Checks

on: [push]

jobs:
qualityChecks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Set up Soda Core
run: pip install -U soda-core-duckdb
- name: Get CLI
run: |
curl -L https://github.com/datacontract/cli/releases/download/v0.4.0/datacontract-v0.4.0-linux-amd64.tar.gz -o datacontract.tar.gz
tar -xf datacontract.tar.gz
- name: Check data quality
run: ./datacontract test --soda-config soda-configuration.yaml

0 comments on commit 6447436

Please sign in to comment.