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

Bump arklib version to 0d25eb0 #14

Merged
merged 11 commits into from
Jan 3, 2024
Merged
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
Loading