Format README #20
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: CI build | |
on: [push, pull_request] | |
jobs: | |
build_project: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Git repository | |
uses: actions/checkout@v1 | |
- name: Build the benchmark driver with basic query mix, standard SPARQL 1.1 compliance | |
run: ant build-basic-querymix | |
- name: Build the benchmark driver with advanced query mix, standard SPARQL 1.1 compliance | |
run: ant build-advanced-querymix | |
- name: Build the benchmark driver with basic query mix and queries optimized for GraphDB | |
run: ant build-basic-querymix-graphdb | |
- name: Build the benchmark driver with advanced query mix and queries optimized for GraphDB | |
run: ant build-advanced-querymix-graphdb | |
- name: Build the benchmark driver with basic query mix and queries optimized for Virtuoso | |
run: ant build-basic-querymix-virtuoso | |
- name: Build the benchmark driver with advanced query mix and queries optimized for Virtuoso | |
run: ant build-advanced-querymix-virtuoso |