Skip to content

Commit

Permalink
Add scheduled check for compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
pcvolkmer committed Oct 3, 2024
1 parent b717f1c commit ddcabb5
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/compatibility.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: 'Check Compatibility'

on:
schedule:
- cron: '0 0 * * *'

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.20'

# See: https://github.com/KohlbacherLab/dnpm-dip-api-gateway/blob/main/app/controllers/README.md#synthetic-json-data
- name: Download synthetic mtb patient record
run: curl -f https://dnpm.bwhealthcloud.de/api/mtb/fake/data/patient-record -o ./tests/mv64e-mtb-fake-patient.json

- name: Run tests
run: go test

0 comments on commit ddcabb5

Please sign in to comment.