Skip to content

build(deps): bump github.com/qiniu/x from 1.13.8 to 1.13.9 #206

build(deps): bump github.com/qiniu/x from 1.13.8 to 1.13.9

build(deps): bump github.com/qiniu/x from 1.13.8 to 1.13.9 #206

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
Test:
strategy:
matrix:
go-version: [1.16.x, 1.18.x, 1.20.x, 1.21.x]
os: [ubuntu-latest, windows-latest,macos-11]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -coverprofile="coverage.txt" -covermode=atomic ./...
- name: Codecov
uses: codecov/codecov-action@v4