whatcanGOwrong
This commit is contained in:
+19
@@ -0,0 +1,19 @@
|
||||
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'
|
||||
Reference in New Issue
Block a user