Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: build
run: cargo build --verbose
- name: test
Expand All @@ -28,6 +28,6 @@ jobs:
tar -xvf cargo-binstall-x86_64-unknown-linux-musl.tgz
- name: install cargo-tarpaulin
run: ./cargo-binstall --no-confirm cargo-tarpaulin
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: verify coverage
run: cargo tarpaulin --fail-under 50
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
env:
TARGET: ${{ matrix.target }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: add target
run: rustup target add $TARGET
Expand All @@ -61,7 +61,7 @@ jobs:
env:
TARGET: x86_64-pc-windows-msvc
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: add target
run: rustup target add $env:TARGET
Expand Down