Skip to content
This repository has been archived by the owner on Jan 28, 2024. It is now read-only.

add maintenance badge #32

add maintenance badge

add maintenance badge #32

Workflow file for this run

name: Test
on:
push:
tags:
- v*
branches:
- main
pull_request:
permissions:
contents: read
jobs:
test-linux:
name: test-linux
runs-on: ubuntu-22.04
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.18
- uses: actions/checkout@v3
- name: Install libraries
run: |
sudo apt-get update
sudo apt-get install -y opencl-headers ocl-icd-opencl-dev
- name: Run tests
run: go test -race ./...
test-mac:
name: test-mac
runs-on: macos-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.18
- uses: actions/checkout@v3
- name: Run tests
run: go test -race ./...