Skip to content

updated the script

updated the script #32

Workflow file for this run

name: Testing
on:
pull_request:
jobs:
test:
strategy:
matrix:
go-version: [1.20.x]
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: |
make test