Skip to content

Update linear_regression_test.go #411

Update linear_regression_test.go

Update linear_regression_test.go #411

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
golangci:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
name: Tests
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache-dependency-path: go.sum
- name: Install dependencies
run: go mod download
- name: Unit Test
run: go test -v ./...