Skip to content

Commit

Permalink
add avro schema validation
Browse files Browse the repository at this point in the history
  • Loading branch information
Panaetius committed Mar 12, 2024
1 parent 55f61cb commit 872197a
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Run CI
on:
pull_request:
branches:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Avrodisiac
run: |
curl -L -o avrodisiac.tar.gz https://github.com/SwissDataScienceCenter/avrodisiac/releases/download/v0.1.0/avrodisiac-x86_64-unknown-linux-gnu.tar.gz
tar xf avrodisiac.tar.gz --directory=/tmp/
- name: Check formatting
run: /tmp/avrodisiac lint .
# - name: Check compatibility
# run: |
# git worktree add /tmp/old ${{ github.event.pull_request.base.ref }}
# /tmp/avrodisiac compat /tmp/old .

0 comments on commit 872197a

Please sign in to comment.