chore: dependabot #8
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: Coverage | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
grcov: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
rust: [nightly] | |
orientdb-server: [3.1.11] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Starting Gremlin Servers | |
run: | | |
docker-compose -f ./docker-compose/docker-compose.yaml up -d | |
env: | |
ORIENTDB_VERSION: ${{ matrix.orientdb-server }} | |
- uses: actions/checkout@v2 | |
- name: Install latest ${{ matrix.rust }} | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust }} | |
profile: minimal | |
override: true | |
- name: Run cargo clean | |
uses: actions-rs/cargo@v1 | |
with: | |
command: clean | |
- name: Run cargo test with tokio | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --manifest-path orientdb-client/Cargo.toml --features=tokio-runtime,uuid,sugar | |
env: | |
CARGO_INCREMENTAL: '0' | |
RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off' | |
- name: Run cargo test with async-std | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --manifest-path orientdb-client/Cargo.toml --features=async-std-runtime,uuid,sugar | |
env: | |
CARGO_INCREMENTAL: '0' | |
RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off' | |
- name: Run grcov | |
id: coverage | |
uses: actions-rs/[email protected] | |
- name: Coveralls upload | |
uses: coverallsapp/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: ${{ steps.coverage.outputs.report }} | |
flag-name: test-${{ matrix.os }} | |
parallel: true | |
grcov_finalize: | |
runs-on: ubuntu-latest | |
needs: grcov | |
steps: | |
- name: Finalize Coveralls upload | |
uses: coverallsapp/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
parallel-finished: true |