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
8 changes: 4 additions & 4 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,30 +3,30 @@ stages:
- build

clippy:
image: paritytech/ci-linux:c4f0daf3-20220110
image: paritytech/ci-linux:f203f298-20220421
stage: test
timeout: 1 hours
script:
- rustup component add clippy --toolchain nightly
- cargo +nightly clippy --all-features --all-targets --locked -- -D warnings

fmt:
image: paritytech/ci-linux:c4f0daf3-20220110
image: paritytech/ci-linux:f203f298-20220421
stage: test
timeout: 1 hours
script:
- rustup component add rustfmt --toolchain nightly
- cargo +nightly fmt -- --check

test:
image: paritytech/ci-linux:c4f0daf3-20220110
image: paritytech/ci-linux:f203f298-20220421
stage: test
timeout: 1 hours
script:
- cargo test --all --all-targets --locked

test-features:
image: paritytech/ci-linux:c4f0daf3-20220110
image: paritytech/ci-linux:f203f298-20220421
stage: test
timeout: 1 hours
script:
Expand Down
Loading