Skip to content

Update test.yml

Update test.yml #3

Workflow file for this run

name: Test
on: [ push, pull_request ]
jobs:
test:
strategy:
matrix:
go-version: [ "1.17", "1.18", "1.19","1.20" ]
platform: [ "ubuntu-latest" ]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Test with the Go CLI
run: go test main.go