Skip to content

Commit

Permalink
✒️ gh-actions: add workflow to test with gotip
Browse files Browse the repository at this point in the history
  • Loading branch information
database64128 committed Feb 1, 2024
1 parent 6290681 commit afb0c0d
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test_gotip.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Test with gotip

on:
workflow_dispatch:

jobs:
test:
name: Test
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4

- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod

- name: Install gotip
run: go install golang.org/dl/gotip@latest

- name: Test
run: gotip test -v

0 comments on commit afb0c0d

Please sign in to comment.