diff --git a/ci/audit.yml b/ci/audit.yml index eec435a..fc60f66 100644 --- a/ci/audit.yml +++ b/ci/audit.yml @@ -23,7 +23,7 @@ run: args: - -exc - | + rustup default stable cargo install cargo-audit cargo audit dir: "repo" - diff --git a/ci/build-docker.yml b/ci/build-docker.yml index 65d92b8..6539f52 100644 --- a/ci/build-docker.yml +++ b/ci/build-docker.yml @@ -8,7 +8,9 @@ inputs: - name: repo run: - path: echo - args: ["building in docker"] + path: sh + args: + - -exc + - | + echo building in docker dir: "repo" - diff --git a/ci/build-linux.yml b/ci/build-linux.yml index 229083c..4a4a218 100644 --- a/ci/build-linux.yml +++ b/ci/build-linux.yml @@ -17,7 +17,10 @@ inputs: - name: repo run: - path: cargo - args: ["build", "--release"] + path: sh + args: + - -exc + - | + rustup default stable + cargo build --release dir: "repo" - diff --git a/ci/check-fmt.yml b/ci/check-fmt.yml index 3afd882..1c6344e 100644 --- a/ci/check-fmt.yml +++ b/ci/check-fmt.yml @@ -20,9 +20,9 @@ inputs: run: path: sh args: - - -exc - - | - rustup component add rustfmt - cargo fmt -- --check + - -exc + - | + rustup default stable + rustup component add rustfmt + cargo fmt --check dir: "repo" - diff --git a/ci/deploy.yml b/ci/deploy.yml index bc27026..1c43a3b 100644 --- a/ci/deploy.yml +++ b/ci/deploy.yml @@ -8,7 +8,9 @@ inputs: - name: repo run: - path: echo - args: ["deploying..."] + path: sh + args: + - -exc + - | + echo deploying... dir: "repo" - diff --git a/ci/lint.yml b/ci/lint.yml index ccb3efa..fa20d12 100644 --- a/ci/lint.yml +++ b/ci/lint.yml @@ -20,9 +20,9 @@ inputs: run: path: sh args: - - -exc - - | - rustup component add clippy - cargo clippy + - -exc + - | + rustup default stable + rustup component add clippy + cargo clippy dir: "repo" - diff --git a/ci/test.yml b/ci/test.yml index 9d6d2b8..9237d51 100644 --- a/ci/test.yml +++ b/ci/test.yml @@ -17,7 +17,10 @@ inputs: - name: repo run: - path: cargo - args: ["test"] + path: sh + args: + - -exc + - | + rustup default stable + cargo test dir: "repo" -