name: Go on: push: branches: [ "main" ] pull_request: branches: [ "main" ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Set up Go uses: actions/setup-go@v5 with: go-version: '1.21' - name: Test with coverage run: | go test -race -coverprofile=coverage.out -covermode=atomic ./... (cd i18n && go mod tidy && go test -race -coverprofile=coverage.out -covermode=atomic ./...) - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v4.0.1 with: token: ${{ secrets.CODECOV_TOKEN }} slug: ${{ github.repository }}