Skip to content
This repository was archived by the owner on Jun 12, 2026. It is now read-only.

chore(ci): GOEXPERIMENT=jsonv2 #14

chore(ci): GOEXPERIMENT=jsonv2

chore(ci): GOEXPERIMENT=jsonv2 #14

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
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Print All environment variables
run: env | sort
- name: Set up Go
uses: actions/setup-go@v5
- name: Set Go environment variables
run: |
echo "Setting up Go environment variables"
echo "GOEXPERIMENT=jsonv2" >> $GITHUB_ENV
- 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
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: go-spring/stdlib