diff --git a/.github/workflows/pull.yaml b/.github/workflows/pull.yaml index 1e88aa1..8bdd50f 100644 --- a/.github/workflows/pull.yaml +++ b/.github/workflows/pull.yaml @@ -9,8 +9,13 @@ jobs: test: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v4 - - uses: actions/setup-go@v5 + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Go + uses: actions/setup-go@v5 with: go-version: "1.23.1" - - run: go test ./... + - name: Run tests + run: | + cd practice/exercism + go test ./...