From 788c94eb2fb27d1219c2edbee892a7d8622962a6 Mon Sep 17 00:00:00 2001 From: clabby Date: Tue, 13 Feb 2024 02:47:59 -0500 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=20Cache=20hits?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2ae4efdee..2b4d9fdf2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -44,6 +44,9 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: fmt + lint run: just lint-${{ matrix.target }} + - name: chown target + run: | + sudo chown -R $(user -u):$(group -g) ./target cargo-build: runs-on: ubuntu-latest timeout-minutes: 20 @@ -70,6 +73,9 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: build run: just build-${{ matrix.target }} + - name: chown target + run: | + sudo chown -R $(user -u):$(group -g) ./target cargo-doc: runs-on: ubuntu-latest timeout-minutes: 20