Skip to content

Commit

Permalink
Merge pull request #89 from LNP-BP/develop
Browse files Browse the repository at this point in the history
Relese v0.8
  • Loading branch information
dr-orlovsky authored Jun 30, 2022
2 parents 1199299 + 9772384 commit 83d1ee5
Show file tree
Hide file tree
Showing 27 changed files with 137 additions and 773 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: check
args: --workspace
features:
runs-on: ubuntu-latest
strategy:
Expand Down Expand Up @@ -59,12 +60,9 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-20.04, ubuntu-latest, macos-11.0, windows-latest ]
os: [ ubuntu-20.04, ubuntu-22.04, macos-11, macos-12, windows-2019, windows-2022 ]
steps:
- uses: actions/checkout@v2
- name: Install macos dependencies
if: startsWith(matrix.os, 'macos')
run: brew install pkg-config
- name: Install rust stable
uses: actions-rs/toolchain@v1
with:
Expand All @@ -74,13 +72,13 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: check
args: --all-features
args: --workspace --all-targets --all-features
toolchains:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
toolchain: [ nightly, beta, stable, 1.56.0 ]
toolchain: [ nightly, beta, stable, 1.59.0 ]
steps:
- uses: actions/checkout@v2
- name: Install rust ${{ matrix.toolchain }}
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,15 @@ jobs:
RUSTDOCFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off'
- id: coverage
name: Generate coverage
uses: actions-rs/[email protected]
uses: actions-rs/[email protected]
with:
args: >
-t lcov
--llvm
--ignore-not-existing
--ignore "/*"
-o ./target/lcov.info
./target/debug/
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ jobs:
name: Clippy
with:
command: clippy
args: --workspace --all-features
args: --workspace --all-features --all-targets
doc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install rustc stable
- name: Install rustc nightly
uses: actions-rs/toolchain@v1
with:
toolchain: stable
toolchain: nightly
override: true
components: rust-docs
- uses: actions-rs/cargo@v1
Expand Down
Loading

0 comments on commit 83d1ee5

Please sign in to comment.