Skip to content

feat(skill): decision journal - the loop that makes the human smarter #32

feat(skill): decision journal - the loop that makes the human smarter

feat(skill): decision journal - the loop that makes the human smarter #32

Workflow file for this run

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