Skip to content

update test

update test #8

Workflow file for this run

name: CI-Test
on:
push:
branches:
- main
paths-ignore:
- '**.md'
- LICENSE
pull_request:
paths-ignore:
- '**.md'
- LICENSE
workflow_dispatch:
jobs:
CI-Test:
strategy:
matrix:
os-version: [ "macos-latest", "windows-latest", "ubuntu-latest" ]
runs-on: ${{ matrix.os-version }}
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Test
run: go test -v ./...