Skip to content

Bump golang.org/x/crypto from 0.21.0 to 0.23.0 #115

Bump golang.org/x/crypto from 0.21.0 to 0.23.0

Bump golang.org/x/crypto from 0.21.0 to 0.23.0 #115

Workflow file for this run

name: Go Unit Test
on:
- push
- pull_request
jobs:
test:
name: Unit-Test
runs-on: ubuntu-latest
env:
GOPATH: ${{ github.workspace }}/go
defaults:
run:
working-directory: ${{ env.GOPATH }}/src/github.com/kubeflow/arena
steps:
- name: Check out code
uses: actions/checkout@v3
with:
path: ${{ env.GOPATH }}/src/github.com/kubeflow/arena
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version-file: ${{ env.GOPATH }}/src/github.com/kubeflow/arena/go.mod
- name: Run Go test
run: |
make test