Skip to content

Update TODO.txt

Update TODO.txt #42

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
env:
GOPATH: ${{ github.workspace }}
defaults:
run:
working-directory: ${{ env.GOPATH }}/blockchain-difficulty/src
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 1
path: ${{ env.GOPATH }}/blockchain-difficulty/src
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Build
run: go build -v cmd/main.go
- name: Test
run: go test -v ./...