Delete GPL3 license #860
Workflow file for this run
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
on: [push, pull_request] | |
name: Tests | |
jobs: | |
test: | |
strategy: | |
matrix: | |
go-version: [1.19.x] | |
#macos-latest, windows-latest | |
os: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
# files in /mock are to big for a github repo, we use git lfs | |
#with: | |
# lfs: true | |
#- name: Checkout LFS objects | |
# run: git lfs checkout | |
- name: Run tests | |
run: | | |
go test ./... -v |