Skip to content

badges

badges #8

Workflow file for this run

name: Test
on:
push:
branches:
- "*"
workflow_call:
jobs:
run_test:
name: Run tests
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.15','1.16','1.17','1.18','1.19', '1.20', '1.21.x']
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Display Go version
run: go version
- name: Install dependencies
run: |
go get .
- name: run test
run: make test