Skip to content

Update ci.yml

Update ci.yml #44

Workflow file for this run

name: CI
on:
push:
branches: [ "cli_ci_cd" ]
env:
CARGO_TERM_COLOR: always
jobs:
Build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install toolchain
run: |
rustup toolchain add nightly --component llvm-tools-preview
rustup override set nightly
- name: Install dependencies
run: sudo apt-get update; sudo apt-get install pkg-config libx11-dev libasound2-dev libudev-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev
- name: Build
run: cargo build
Test:
name: Test
needs: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Test
env:
LLVM_PROFILE_FILE: "target/coverage/grcov-%p-%m.profraw"
RUSTFLAGS: -Cinstrument-coverage
run: cargo test
Test-coverage:
name: Test-coverage
needs: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install grcov
run: cargo install grcov --force
- name: Test
env:
LLVM_PROFILE_FILE: "target/coverage/grcov-%p-%m.profraw"
RUSTFLAGS: -Cinstrument-coverage
run: cargo test
- name: Generate code coverage
run: |
grcov $(find . -name "grcov-*.profraw" -print) \
--branch \
--ignore-not-existing \
--binary-path ./target/debug/ \
-s . \
-t lcov \
--ignore "/*" \
-o lcov.info
- name: Check code coverage
uses: VeryGoodOpenSource/very_good_coverage@v2
with:
path: lcov.info
min_coverage: 30.0
min_coverage: 30.0

Check failure on line 78 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 78, Col: 11): 'min_coverage' is already defined