Skip to content

chore(ci): GOEXPERIMENT=jsonv2 #18

chore(ci): GOEXPERIMENT=jsonv2

chore(ci): GOEXPERIMENT=jsonv2 #18

Workflow file for this run

name: Run tests and upload coverage
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Run tests and collect coverage
runs-on: ubuntu-latest
env:
GOEXPERIMENT: jsonv2
steps:
- name: Checkout
uses: actions/checkout@v6.0.2
- name: Print All environment variables
run: env | sort
- name: Set up Go
uses: actions/setup-go@v6.3.0
with:
go-version: '1.25'
- name: Install dependencies
run: go mod download
- name: Run tests
run: go test -count=1 -coverprofile=coverage.txt ./...
- name: Upload results to Codecov
uses: codecov/codecov-action@v5.5.2
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: go-spring/stdlib