From 7071f3c66d3cf51c381312d0b4b062eefd5565ea Mon Sep 17 00:00:00 2001 From: Daniel Lubarov Date: Wed, 10 Jan 2024 13:10:13 -0800 Subject: [PATCH] Fix missing character --- .github/workflows/ci.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ab3e1935..ab71118a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -ame: CI +name: CI on: push: @@ -56,16 +56,16 @@ jobs: with: path: valida -# - name: Install nightly toolchain -# uses: actions-rs/toolchain@v1 -# with: -# profile: minimal -# toolchain: nightly -# components: rustfmt, clippy + - name: Install nightly toolchain + uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: nightly + components: rustfmt, clippy -# - name: Format -# working-directory: valida -# run: cargo fmt --all -- --check + - name: Format + working-directory: valida + run: cargo fmt --all -- --check # TODO: Enforce clippy at some point... # - name: Run cargo clippy