mirror of
https://github.com/dnpm-dip/mv64e-mtb-dto-rs.git
synced 2025-07-03 03:22:53 +00:00
23 lines
602 B
YAML
23 lines
602 B
YAML
name: 'Check Compatibility'
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
# 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: Build
|
|
run: cargo build --verbose
|
|
- name: Run tests
|
|
run: cargo test --verbose |