Skip to content

Merge pull request #15 from kcl-lang/update-go-deps #2

Merge pull request #15 from kcl-lang/update-go-deps

Merge pull request #15 from kcl-lang/update-go-deps #2

Workflow file for this run

name: build-and-test-linux
on:
pull_request:
push:
branches:
- main
- "releases/*"
jobs:
build-and-test:
# Ref: https://github.com/actions/runner-images/tree/main/images/macos
strategy:
matrix:
os: [ macos-12, macos-14, ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22
- name: go test
run: go test ./...