From a9e17ab8c6637b8e75fd5551aec47536f47544f7 Mon Sep 17 00:00:00 2001 From: James Lucktaylor Date: Fri, 3 Mar 2023 12:08:30 +0000 Subject: [PATCH] style(actions/rust): resolve PR review --- .github/workflows/rust.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 9ed68f5aa..4a58b9ccf 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: schedule: # Everyday at 5:00am - - cron: "0 5 * * *" + - cron: '0 5 * * *' pull_request: push: # trying and staging branches are for Bors config @@ -85,16 +85,13 @@ jobs: # Use ubuntu-18.04 to compile with glibc 2.27, which are the production expectations image: ubuntu:18.04 if: github.event_name == 'schedule' - steps: - uses: actions/checkout@v3 - - name: Run cargo build with all features uses: actions-rs/cargo@v1 with: command: build args: --workspace --locked --release --all-features - - name: Run cargo test with all features uses: actions-rs/cargo@v1 with: