Update go version to 1.22.1 and run go mod tidy #61
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
name: Go | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build-linux: | |
strategy: | |
matrix: | |
go-version: [1.21.x, 1.22.x] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Build | |
run: go build -v ./... | |
- name: Install SoftHSM | |
run: sudo apt-get -y install softhsm2 | |
- name: Setup SoftHSM | |
run: ./.github/scripts/setup-softhsm.sh | |
shell: bash | |
- name: Test | |
run: go test -v ./... | |
env: | |
GLOBALSIGN_EST_SKIP: tpm | |
build-macos: | |
strategy: | |
matrix: | |
go-version: [1.21.x, 1.22.x] | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Build | |
run: go build -v ./... | |
- name: Test | |
run: go test -v ./... | |
env: | |
GLOBALSIGN_EST_SKIP: hsm,tpm | |
build-windows: | |
strategy: | |
matrix: | |
go-version: [1.21.x, 1.22.x] | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Build | |
run: go build -v ./... |