Skip to content
This repository has been archived by the owner on May 11, 2024. It is now read-only.

Commit

Permalink
Update GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillt committed Jan 3, 2024
1 parent 00a8393 commit 43dd60f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Install Rust
uses: actions-rs/toolchain@v1
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
override: true
components: rustfmt, clippy

- name: Check
run: cargo check

- name: Format
run: cargo fmt --all -- --check
run: |
cargo fmt --all -- --check
cargo clippy
- name: Build Release
run: cargo build --verbose --release
2 changes: 0 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,6 @@ async fn main() {
desc.to_owned(),
);



let future = link.save(&root, true);

println!("Saving link...");
Expand Down

0 comments on commit 43dd60f

Please sign in to comment.