Skip to content

Merge pull request #22 from 0xnu/develop #2

Merge pull request #22 from 0xnu/develop

Merge pull request #22 from 0xnu/develop #2

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Unit Tests
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.20.x', '1.21.x', '1.23.x' ]
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-versions: ${{ matrix.go-version }}
- name: Install Dependencies
run: go mod download
- name: Run Tests
run: go test -v .