Skip to content

Adding go tests to ensure we dont upgrade beyond the MPL 2.0 versions #1

Adding go tests to ensure we dont upgrade beyond the MPL 2.0 versions

Adding go tests to ensure we dont upgrade beyond the MPL 2.0 versions #1

Workflow file for this run

name: Go-tests
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21.5'
- name: Install dependencies
run: go get .
- name: Test with the Go CLI
run: go test