Skip to content

Merge pull request #113 from sagikazarmark/dependabot/github_actions/… #202

Merge pull request #113 from sagikazarmark/dependabot/github_actions/…

Merge pull request #113 from sagikazarmark/dependabot/github_actions/… #202

Workflow file for this run

name: CI
on:
push:
branches:
- master
- fork
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.17', '1.18', '1.19']
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Checkout code
uses: actions/checkout@v3
- name: Test
run: go test -v ./...