name: Go Project Action on: push: branches: [main] pull_request: types: [opened, synchronize, reopened] jobs: run: name: Spell-check and test go project runs-on: ubuntu-latest timeout-minutes: 15 steps: - name: Checkout repository uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup Go installation uses: actions/setup-go@v5 with: go-version: 1.23.x - name: Spell checking uses: crate-ci/typos@v1.25.0 with: config: ./.typos-config - name: Install dependencies run: go get . - name: Run tests run: go test ./...