Skip to content

Remove difference between required and optional positional arguments,… #11

Remove difference between required and optional positional arguments,…

Remove difference between required and optional positional arguments,… #11

Workflow file for this run

name: CI
on: [push, pull_request]
env:
GO_VERSION: '1.22'
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["macos-latest", "ubuntu-latest", "windows-latest"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Test
run: |
go test