Skip to content

Update functioncall.go #109

Update functioncall.go

Update functioncall.go #109

Workflow file for this run

name: Go
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
go: [1.18, 1.19]
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Get dependencies
run: go get -v -t -d ./...
- name: Test
run: go test -v --tags=go${{ matrix.go }}
- name: Format
if: ${{ matrix.os == 'ubuntu-latest' }}
run: COUNT=`go fmt | wc -l`; if [ $COUNT -gt 0 ]; then exit 1; fi
coverage:
name: Coverage
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Get dependencies
run: go get -v -t -d ./...
- name: Test
run: go test -race -coverprofile=coverage.txt -covermode=atomic
- name: Upload Coverage
uses: codecov/codecov-action@v3
with:
files: coverage.txt