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
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ jobs:
override: true
- name: Checkout
uses: actions/checkout@v3
- name: MSRV dependencies
if: matrix.rust == '1.66.0'
run: make msrv-lock
- name: Check
env:
CARGO_BUILD_TARGET: ${{ matrix.target }}
Expand Down Expand Up @@ -76,7 +79,8 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install gcc-multilib
- name: Copy MSRV Lock
- name: MSRV dependencies
if: matrix.rust == '1.66.0'
run: make msrv-lock
- name: Test
env:
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,7 @@ lint:
@rustup component add clippy 2> /dev/null
@cargo clippy --examples --tests --all-features -- --deny warnings

msrv-lock:
@cargo update -p once_cell --precise 1.20.3

.PHONY: all doc build check test format format-check lint check-minver msrv-lock
Loading