mirror of
https://github.com/lndk-org/lndk.git
synced 2026-08-15 12:50:30 +02:00
63 lines
1.8 KiB
YAML
63 lines
1.8 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: ['master']
|
|
pull_request:
|
|
branches: ['*']
|
|
|
|
env:
|
|
GO_VERSION: 1.21.0
|
|
|
|
jobs:
|
|
build_and_format:
|
|
name: LNDK Rust Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
- run: sudo apt-get install protobuf-compiler
|
|
- run: cargo build --release --all-features
|
|
- run: cargo fmt -- --config unstable_features=true --config wrap_comments=true --config comment_width=100 --check
|
|
- run: cargo clippy -- --deny warnings
|
|
|
|
########################
|
|
# run ubuntu integration tests
|
|
########################
|
|
ubuntu-integration-test:
|
|
name: run ubuntu unit and integration tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: 'true'
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
- run: sudo apt-get install protobuf-compiler
|
|
- name: setup go ${{ env.GO_VERSION }}
|
|
uses: lightningnetwork/lnd/.github/actions/setup-go@v0-16-4-branch
|
|
with:
|
|
go-version: '${{ env.GO_VERSION }}'
|
|
- name: run unit tests
|
|
run: cargo test --bin lndk
|
|
- name: run integration tests
|
|
run: make itest
|
|
|
|
coverage:
|
|
name: LNDK Code Coverage
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
- run: sudo apt-get install protobuf-compiler
|
|
- name: Install cargo-llvm-cov
|
|
uses: taiki-e/install-action@cargo-llvm-cov
|
|
- name: Generate code coverage
|
|
run: cargo llvm-cov --bin lndk --workspace --lcov --output-path lcov.info
|
|
- name: Upload coverage to Codecov
|
|
uses: codecov/codecov-action@v4
|
|
with:
|
|
files: lcov.info
|
|
fail_ci_if_error: true
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|