Skip to content

Bump golang.org/x/crypto from 0.7.0 to 0.17.0 #97

Bump golang.org/x/crypto from 0.7.0 to 0.17.0

Bump golang.org/x/crypto from 0.7.0 to 0.17.0 #97

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
[ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.20.2
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
- name: Gomobile Build
run: |
go install golang.org/x/mobile/cmd/gomobile@latest
gomobile init
gomobile bind -v -target=android -androidapi=33 -ldflags "-s -w" ./