Skip to content

Add callgraphutil.WriteCSV #77

Add callgraphutil.WriteCSV

Add callgraphutil.WriteCSV #77

Workflow file for this run

# This workflow runs go build and test for each
# push and pull request to the main branch.
name: Build and Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...