Skip to content

updated the asset-db package #1128

updated the asset-db package

updated the asset-db package #1128

Workflow file for this run

name: tests
on:
push:
branches: [ "main", "develop" ]
pull_request:
branches: develop
jobs:
test:
name: Test
strategy:
matrix:
os: [ "ubuntu-latest", "macos-latest", "windows-latest" ]
go-version: [ "1.25.5" ]
runs-on: ${{ matrix.os }}
env:
CGO_ENABLED: 0
steps:
-
name: setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
-
name: checkout
uses: actions/checkout@v4
-
name: simple test
run: go test -v ./...
-
name: test with GC pressure
run: go test -v ./...
env:
GOGC: 1
coverage:
name: Coverage
runs-on: ubuntu-latest
env:
CGO_ENABLED: 0
steps:
- name: setup Go
uses: actions/setup-go@v5
with:
go-version: 1.25.5
- name: checkout
uses: actions/checkout@v4
- name: measure coverage
run: go test -v -coverprofile=coverage.out ./...