Skip to content

Commit

Permalink
tests with gotip
Browse files Browse the repository at this point in the history
  • Loading branch information
gaissmai committed Jul 21, 2024
1 parent 99e6fe0 commit dceec1b
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/gotip.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# 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 ./...

0 comments on commit dceec1b

Please sign in to comment.