Skip to content

Bump node-gyp-build from 4.6.0 to 4.6.1 in /bindings/js #372

Bump node-gyp-build from 4.6.0 to 4.6.1 in /bindings/js

Bump node-gyp-build from 4.6.0 to 4.6.1 in /bindings/js #372

Workflow file for this run

name: Go
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '>=1.17'
- name: Set environment
run: echo "GOCOVERDIR=." >> $GITHUB_ENV
- name: Build
run: go build -v ./...
- name: Test
run: go test -race -count=1 -coverprofile=coverage.out ./...
- name: Coverage
uses: codecov/codecov-action@v3
with:
name: codecov
fail_ci_if_error: true
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '>=1.17'
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
continue-on-error: true
with:
version: latest