Skip to content

Remove ECCParameters.Point initialization #535

Remove ECCParameters.Point initialization

Remove ECCParameters.Point initialization #535

Workflow file for this run

on:
push:
branches: [master]
pull_request:
# Workaround for SHA1 on Go 1.18. There are some kinks to be worked out. See
# the tracking issue for more info: https://github.com/golang/go/issues/41682
env:
GODEBUG: x509sha1=1
name: Test
jobs:
test-linux:
strategy:
matrix:
go-version: [1.24.x]
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v6
- name: Test
run: go test ./...
test-macos:
strategy:
matrix:
go-version: [1.24.x]
runs-on: macos-latest
steps:
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v6
# See https://github.com/google/go-tpm-tools#macos-dev
- name: Test
run: C_INCLUDE_PATH="$(brew --prefix [email protected])/include" LIBRARY_PATH="$(brew --prefix [email protected])/lib" go test ./...
test-windows:
strategy:
matrix:
go-version: [1.24.x]
runs-on: windows-latest
steps:
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v6
- name: Test
run: go build ./...