Skip to content

Commit

Permalink
actions: upload lnd logs using github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
orbitalturtle committed Jul 11, 2023
1 parent 66a7e3d commit 554cb0f
Showing 1 changed file with 7 additions and 25 deletions.
32 changes: 7 additions & 25 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,18 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
name: cargo build
with:
command: build
args: --release --all-features
- uses: actions-rs/cargo@v1
name: cargo test
with:
command: test
args: --all-targets --benches -- --test-threads=1
- run: ls /tmp
- name: Archive lnd logs
uses: actions/upload-artifact@v3
with:
name: lnd-logs
path: |
/tmp/lnd_logs
- uses: actions-rs/cargo@v1
name: cargo fmt
with:
Expand All @@ -35,23 +37,3 @@ jobs:
with:
command: clippy
args: -- --deny warnings
coverage:
name: LNDK Code Coverage
runs-on: ubuntu-latest
env:
CARGO_TERM_COLOR: always
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: 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
token: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit 554cb0f

Please sign in to comment.