Skip to content

Bump github.com/nikolaydubina/treemap from 1.2.4 to 1.2.5 #19

Bump github.com/nikolaydubina/treemap from 1.2.4 to 1.2.5

Bump github.com/nikolaydubina/treemap from 1.2.4 to 1.2.5 #19

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions: read-all
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.17
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: go get -v -t -d ./...
- name: Test that can build
run: go build
- name: Test
run: go test -v -coverprofile=coverage.txt -covermode=atomic ./...
- name: Codecov
uses: codecov/codecov-action@v1.0.10