Skip to content

chore: add missing supported languages #33

chore: add missing supported languages

chore: add missing supported languages #33

Workflow file for this run

name: Go
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.15', '1.16', '1.17', '1.18', '1.19.x' ]
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
cache: true
- name: Install dependencies
run: go get .
- name: Run tests
run: go test ./...