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