feat(skill): decision journal - the loop that makes the human smarter #32
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.25" | |
| - name: vet | |
| run: go vet ./... | |
| - name: test (race + coverage) | |
| # En Linux cgo+gcc funcionan, así que el race detector corre acá. | |
| run: go test -race -coverprofile=coverage.out -covermode=atomic ./... | |
| - name: upload coverage to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| files: ./coverage.out | |
| slug: Dieg0Code/nem | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| fail_ci_if_error: false |