UniProt: make a 'fasta' for a chain sequence annotation #689
Workflow file for this run
This file contains 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: Check SPARQL queries | |
on: [push, pull_request, workflow_call, workflow_dispatch] | |
jobs: | |
check: | |
name: Run SPARQL checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
- name: Install tester | |
run: wget "https://github.com/sib-swiss/sparql-examples-utils/releases/download/v2.0.6/sparql-examples-utils-2.0.6-uber.jar" -O sparql-examples-utils.jar | |
- name: Run tests | |
run: java -jar sparql-examples-utils.jar test --input-directory=examples/ |