Add test case for avo generator in standard library crypto/internal/bigmod. https://github.com/golang/go/tree/go1.20rc2/src/crypto/internal/bigmod https://golang.org/cl/452095 https://words.filippo.io/dispatches/go-1-20-cryptography/ Closes #354
29 lines
719 B
YAML
29 lines
719 B
YAML
name: thirdparty
|
|
permissions:
|
|
contents: read
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- "tests/thirdparty/**"
|
|
pull_request:
|
|
paths:
|
|
- "tests/thirdparty/**"
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install Go
|
|
uses: actions/setup-go@c4a742cab115ed795e34d4513e2cf7d472deb55f # v3.3.1
|
|
with:
|
|
go-version: 1.19.x
|
|
check-latest: true
|
|
- name: Checkout code
|
|
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
|
|
with:
|
|
persist-credentials: false
|
|
- name: Run Third-Party Tests
|
|
working-directory: tests/thirdparty
|
|
run: go test -timeout 15m -args -net -suite suite.json
|