Files
LearnGO/go/pkg/mod/go.starlark.net@v0.0.0-20231101134539-556fd59b42f6/.github/workflows/tests.yml
T
2024-09-19 21:38:24 -04:00

20 lines
502 B
YAML

name: Starlark Go Tests
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
go-version: [1.18.x, 1.19.x, 1.20.x, 1.21.x]
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@v3
- name: Run Tests
shell: bash
run: 'internal/test.sh'