Skip to content

Fix: fixed the no reduced cedar code and update CI #27

Fix: fixed the no reduced cedar code and update CI

Fix: fixed the no reduced cedar code and update CI #27

Workflow file for this run

name: Go
on: [push]
jobs:
test:
# name: build
strategy:
matrix:
# go: [1.16.x, 1.17.x]
os: [macOS-latest, windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go 1.26.0
uses: actions/setup-go@v6
with:
go-version: 1.26.0
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v6
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v .
- name: Test
run: go test -v .