diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 3148329..89f6d99 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -9,14 +9,14 @@ jobs: name: Lint runs-on: ${{ vars.RUNNER_UBUNTU && fromJSON(vars.RUNNER_UBUNTU) || 'ubuntu-latest' }} steps: + - name: Check out code into the Go module directory + uses: actions/checkout@v6 + - name: Set up Go uses: actions/setup-go@v6 with: go-version: 1.19 - - name: Check out code into the Go module directory - uses: actions/checkout@v6 - - name: Run golangci-lint uses: golangci/golangci-lint-action@v9 @@ -24,14 +24,14 @@ jobs: name: Build runs-on: ${{ vars.RUNNER_UBUNTU && fromJSON(vars.RUNNER_UBUNTU) || 'ubuntu-latest' }} steps: + - name: Check out code into the Go module directory + uses: actions/checkout@v6 + - name: Set up Go uses: actions/setup-go@v6 with: go-version: 1.19 - - name: Check out code into the Go module directory - uses: actions/checkout@v6 - - name: Build run: make build @@ -39,14 +39,14 @@ jobs: name: Test runs-on: ${{ vars.RUNNER_UBUNTU && fromJSON(vars.RUNNER_UBUNTU) || 'ubuntu-latest' }} steps: + - name: Check out code into the Go module directory + uses: actions/checkout@v6 + - name: Set up Go uses: actions/setup-go@v6 with: go-version: 1.19 - - name: Check out code into the Go module directory - uses: actions/checkout@v6 - - name: Run tests run: make test diff --git a/.gitignore b/.gitignore index 01c0633..5bf7945 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,6 @@ dist/ # Dependency directories (remove the comment below to include it) # vendor/ .idea/ + +# Claude Code local agent state (per-project conversation history, etc.) +.claude/