Skip to content

add gorutine diagram #28

add gorutine diagram

add gorutine diagram #28

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
types: [opened,reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19.1
- name: Download dependancies
run: go mod download
- name: Test
run: make test
- name: Build binary
run: make build