From 1582e8204d9e7175b24ebfff6f6aeb9ff944efaa Mon Sep 17 00:00:00 2001 From: Sweattypalms <100982104+Sweattypalms@users.noreply.github.com> Date: Mon, 24 Jun 2024 10:10:31 +0900 Subject: [PATCH] Update rust.yml (idk) --- .github/workflows/rust.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index a032e68a..7d04a457 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -16,10 +16,13 @@ jobs: steps: - uses: actions/checkout@v4 - + - name: Install Rust nightly run: rustup override set nightly + - name: Install required components + run: rustup component add rustfmt clippy + - name: Cache cargo registry uses: actions/cache@v2 with: @@ -36,6 +39,15 @@ jobs: restore-keys: | ${{ runner.os }}-cargo-build- + - name: Print environment variables + run: printenv + + - name: Print current directory + run: pwd + + - name: List current directory contents + run: ls -la + - name: Build env: CARGO_MANIFEST_DIR: ${{ github.workspace }}