Skip to content

add build status badge #7

add build status badge

add build status badge #7

Workflow file for this run

name: Go
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21.4'
- name: Build
run: go build -o bin/er
- name: Test
run: go test -v ./...