Skip to content

Fix Tenstorrent matmul demo lint issues #241

Fix Tenstorrent matmul demo lint issues

Fix Tenstorrent matmul demo lint issues #241

Workflow file for this run

name: Zeonica Test
on: push
jobs:
compile:
name: Compilation
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Build
run: go build ./...
- name: Lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.64.8
args: --timeout=10m
- name: Install Ginkgo
run: go install github.com/onsi/ginkgo/v2/ginkgo
- name: Unit Test
run: ginkgo -r
- name: Go Test
run: go test ./...