Skip to content

Merge pull request #44 from morukele/transaction-split #90

Merge pull request #44 from morukele/transaction-split

Merge pull request #44 from morukele/transaction-split #90

Workflow file for this run

name: Rust
on:
push:
branches: [ "main", "master" ]
env:
CARGO_TERM_COLOR: always
PAYSTACK_API_KEY: ${{secrets.PAYSTACK_API_KEY}}
BANK_ACCOUNT: ${{secrets.BANK_ACCOUNT}}
BANK_CODE: ${{secrets.BANK_CODE}}
BANK_NAME: ${{secrets.BANK_NAME}}
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
coverage:
runs-on: ubuntu-latest
env:
CARGO_TERM_COLOR: always
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: rustup update stable
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Generate code coverage
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
files: lcov.info
fail_ci_if_error: true