Skip to content

Update setup.yml

Update setup.yml #98

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
if: (github.event.commits[0].message != 'Initial commit') && (github.run_number != 1)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Test
run: cd ./src && go test -v ./...