Skip to content

feat(bench): Group A workloads — W2..W6 (SQLR-16, sub-phase 9.2) (#103) #215

feat(bench): Group A workloads — W2..W6 (SQLR-16, sub-phase 9.2) (#103)

feat(bench): Group A workloads — W2..W6 (SQLR-16, sub-phase 9.2) (#103) #215

Workflow file for this run

name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install Tarpaulin
uses: actions-rs/install@v0.1
with:
crate: cargo-tarpaulin
version: 0.14.2
use-tool-cache: true
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Coverage
run: cargo tarpaulin -o Lcov --output-dir ./coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}