Skip to content

tests with gotip

tests with gotip #13

Workflow file for this run

# This workflow will test against gotip
name: GoTip
on:
push:
branches: ["devel"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download gotip
run: go install golang.org/dl/gotip@latest
- name: Install gotip
run: export PATH=$PATH:$(go env GOPATH)/bin && gotip download
- name: Show env
run: export PATH=$PATH:$(go env GOPATH)/bin && gotip env
- name: Run Tests
run: export PATH=$PATH:$(go env GOPATH)/bin && gotip test -v ./...