Skip to content

Delete .github/workflows/codeql-analysis.yml #27

Delete .github/workflows/codeql-analysis.yml

Delete .github/workflows/codeql-analysis.yml #27

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
go: [1.16]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go }}
- name: Checkout code
uses: actions/checkout@v2
- name: Run tests
run: go test -v ./...