From 1c6a3db7501e956d6e6f9fa3b3f2424455725fe9 Mon Sep 17 00:00:00 2001 From: Jack Baldry Date: Tue, 13 Feb 2024 16:44:10 +0000 Subject: [PATCH] Check out the repository Signed-off-by: Jack Baldry --- .github/workflows/review.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/review.yml b/.github/workflows/review.yml index 28733d0d1..961d88a9e 100644 --- a/.github/workflows/review.yml +++ b/.github/workflows/review.yml @@ -9,16 +9,16 @@ jobs: runs-on: ubuntu-latest steps: + - uses: actions/checkout@v4 + - name: Setup Go uses: actions/setup-go@v4 with: go-version: 1.21 - name: Build tool - run: | - ls -al - cd tools - go build ./cmd/review + working-directory: tools + run: go build ./cmd/review - name: Run tool run: ./tools/review ./docs/sources | head -n 3 > .to-review.txt