Bump golang.org/x/sys from 0.21.0 to 0.22.0 in the go-modules group #303
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.22.x] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Test | |
run: go test ./... | |
test-linux-tpm12: | |
strategy: | |
matrix: | |
go-version: [1.22.x] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install libtspi | |
run: sudo apt-get install -y libtspi-dev | |
- name: Test | |
run: go test -tags tspi ./... | |
test-macos: | |
strategy: | |
matrix: | |
go-version: [1.22.x] | |
runs-on: macos-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
# 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.22.x] | |
runs-on: windows-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Test | |
run: go build ./... |