diff options
author | FxQnLr <[email protected]> | 2023-10-30 12:33:57 +0100 |
---|---|---|
committer | FxQnLr <[email protected]> | 2023-10-30 12:33:57 +0100 |
commit | bdbcce55ff7d4494f377fbb7045d572d47f7868c (patch) | |
tree | 44d1e83ce562f8fdec22d15cbab8500b3718014a /.github/workflows/push.yml | |
parent | 348cf5fbe4527865e8aa5cb719fd8790f4d8953e (diff) | |
download | webol-bdbcce55ff7d4494f377fbb7045d572d47f7868c.tar webol-bdbcce55ff7d4494f377fbb7045d572d47f7868c.tar.gz webol-bdbcce55ff7d4494f377fbb7045d572d47f7868c.zip |
cargo update and use cargo directly in actions
Diffstat (limited to '.github/workflows/push.yml')
-rw-r--r-- | .github/workflows/push.yml | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 93b6edb..d41941b 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml | |||
@@ -19,23 +19,9 @@ jobs: | |||
19 | uses: mozilla-actions/[email protected] | 19 | uses: mozilla-actions/[email protected] |
20 | 20 | ||
21 | - uses: actions/checkout@v4 | 21 | - uses: actions/checkout@v4 |
22 | - uses: actions-rs/toolchain@v1 | ||
23 | with: | ||
24 | toolchain: stable | ||
25 | components: rustfmt, clippy | ||
26 | override: true | ||
27 | 22 | ||
28 | - name: Run cargo check | 23 | - run: cargo check --release |
29 | uses: actions-rs/cargo@v1 | 24 | - run: cargo clippy --release |
30 | with: | ||
31 | command: check | ||
32 | args: --release | ||
33 | |||
34 | - name: Run Clippy | ||
35 | uses: actions-rs/cargo@v1 | ||
36 | with: | ||
37 | command: clippy | ||
38 | args: --release | ||
39 | 25 | ||
40 | build: | 26 | build: |
41 | runs-on: ubuntu-latest | 27 | runs-on: ubuntu-latest |