diff --git a/.github/workflows/go_build.yaml b/.github/workflows/go_build.yaml new file mode 100644 index 0000000..a281c3a --- /dev/null +++ b/.github/workflows/go_build.yaml @@ -0,0 +1,44 @@ +# Copyright 2024 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +name: go_test +on: [push, pull_request] +jobs: + + go_test: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, macOS-latest] # add windows once fully supported + steps: + + - name: Set up Go 1.22 + uses: actions/setup-go@v2 + with: + go-version: 1.22 + id: go + + - name: Check out code + uses: actions/checkout@v3 + + - name: Get dependencies + run: | + go mod download + - name: Build + run: | + go build ./... + + - name: Test + run: | + go test ./... \ No newline at end of file diff --git a/README.md b/README.md index bac204b..c50e984 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@

Clinical Quality Language Engine

-

A experimental CQL execution engine for analyzing FHIR healthcare data at -scale

+

An experimental CQL execution engine for analyzing FHIR healthcare data at +scale

- - Go Documentation - + GitHub Actions Build Status + Go Documentation +