Skip to content

Commit

Permalink
edit
Browse files Browse the repository at this point in the history
  • Loading branch information
jnussbaum committed Jan 12, 2024
1 parent 8345d06 commit 7e73a5e
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/compatibility_check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---

name: test compatibility with DSP-TOOLS

on:
schedule:
- cron: "0 0 * * *"
push:
branches-ignore:
- main

jobs:
compatibility:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Install python
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Install DSP-TOOLS
run: pip3 install dsp-tools
- name: run the import script
run: python3 import_script.py
- name: start stack
run: dsp-tools start-stack --no-prune
- name: create data model
run: dsp-tools create import_project.json
- name: upload data
run: dsp-tools xmlupload data-processed.xml


0 comments on commit 7e73a5e

Please sign in to comment.