Simplify identifier specs to int? #27
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test-ar-live | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: DeLaGuardo/setup-clojure@master | |
| with: | |
| cli: latest | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'zulu' | |
| java-version: '17' | |
| - name: Cache Maven packages | |
| uses: actions/cache@v5 | |
| with: | |
| path: ~/.m2 | |
| key: ${{ runner.os }}-m2-${{ hashFiles('**/deps.edn') }} | |
| restore-keys: ${{ runner.os }}-m2 | |
| - name: Install dependencies | |
| run: clojure -P -M:test | |
| - name: Compilation check | |
| run: clojure -M:dev:owl:check | |
| - name: Write out MLDS password from secrets | |
| run: echo ${{ secrets.MLDS_PASSWORD }} >> mlds-password.txt | |
| - name: Install latest distributions for Argentina | |
| run: clojure -M:run install --db snomed.db --dist ar.mlds/1271898 --username ${{ secrets.MLDS_USERNAME }} --password mlds-password.txt | |
| - name: Index database | |
| run: clojure -M:run --db snomed.db index | |
| - name: Print status report | |
| run: clojure -M:run --db snomed.db status | |
| - name: Run tests | |
| run: clojure -M:test -e :uk -e :slow |