Skip to content

Add AVX (not-AVX2) implementations #6

Add AVX (not-AVX2) implementations

Add AVX (not-AVX2) implementations #6

Workflow file for this run

name: Go
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
- name: Build for GOAMD64=v3
run: go build -v ./...
env:
GOAMD64: v3
- name: Build purego
run: go build -v -tags purego ./...
- name: Build for GOARCH=arm64
run: go build -v ./...
env:
GOARCH: arm64