Skip to content
This repository has been archived by the owner on May 18, 2024. It is now read-only.

Bump golang.org/x/sys from 0.18.0 to 0.19.0 #204

Bump golang.org/x/sys from 0.18.0 to 0.19.0

Bump golang.org/x/sys from 0.18.0 to 0.19.0 #204

Workflow file for this run

name: Go
on:
push:
branches: [ musl-go ]
pull_request:
branches: [ musl-go ]
jobs:
build:
strategy:
matrix:
go-version: [1.18.x]
os: [macos-11, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
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@v2