Skip to content

Commit

Permalink
remove +nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
KaiserKarel committed Dec 29, 2021
1 parent f51c8a5 commit 6718fd2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
echo "$HOME/.cargo/bin:$PATH" >> $GITHUB_PATH
- name: Cargo fmt
run: |
cargo +nightly fmt -- --check
cargo fmt -- --check
- name: Hadolint
env:
HADOLINT_VERSION: v2.8.0
Expand All @@ -71,7 +71,7 @@ jobs:
exit $total_exit_code
- name: Cargo clippy
run: |
cargo +nightly clippy -- -D warnings
cargo clippy -- -D warnings
- name: Cargo udeps
env:
UDEPS_VERSION: v0.1.24
Expand All @@ -84,7 +84,7 @@ jobs:
total_exit_code=0
while IFS= read -r crate; do
echo "=== $crate ==="
(cd "$crate"; SKIP_WASM_BUILD=1 cargo +nightly udeps -q --all-targets) || total_exit_code=$?
(cd "$crate"; SKIP_WASM_BUILD=1 cargo udeps -q --all-targets) || total_exit_code=$?
echo ""
done < <(find . -name "Cargo.toml" -not -path "./polkadot-launch/*" -not -path "./target/*" -exec dirname '{}' \;)
exit $total_exit_code
Expand Down

0 comments on commit 6718fd2

Please sign in to comment.