tests with gotip #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 ./... |