aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-06-10 03:22:35 -0700
committerFuwn <[email protected]>2024-06-10 03:22:35 -0700
commit8b533b71f69769788e52864114281c7ddc3b482d (patch)
tree75c61905791dab3b2543a7079f000da856c080f8
parentd67a92b0e4cc077eb8ab84c4e734b7922902b7d6 (diff)
downloadpara-8b533b71f69769788e52864114281c7ddc3b482d.tar.xz
para-8b533b71f69769788e52864114281c7ddc3b482d.zip
ci(workflows): fix rust nightly release
-rw-r--r--.github/workflows/rust.yaml7
1 files changed, 1 insertions, 6 deletions
diff --git a/.github/workflows/rust.yaml b/.github/workflows/rust.yaml
index 3c83956..5b3d136 100644
--- a/.github/workflows/rust.yaml
+++ b/.github/workflows/rust.yaml
@@ -1,5 +1,4 @@
name: Rust ✅
-
on:
workflow_dispatch:
push:
@@ -8,25 +7,21 @@ on:
pull_request:
paths:
- "*"
-
env:
CARGO_TERM_COLOR: always
-
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛒
uses: actions/checkout@v2
-
- name: Toolchain 🧰
uses: actions-rs/toolchain@v1
with:
profile: minimal
- toolchain: nightly-2022-03-08
+ toolchain: nightly-2024-06-10
components: rustfmt, clippy
override: true
-
- name: Check ✅
uses: actions-rs/cargo@v1
continue-on-error: false