Skip to content

Bump golang.org/x/crypto from 0.0.0-20220411220226-7b82a4e95df4 to 0.13.0 #197

Bump golang.org/x/crypto from 0.0.0-20220411220226-7b82a4e95df4 to 0.13.0

Bump golang.org/x/crypto from 0.0.0-20220411220226-7b82a4e95df4 to 0.13.0 #197

Workflow file for this run

---
name: Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Unit tests
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.19.x'
- name: Build binary
run: go build
- name: Run tests
run: go test -v ./...
integration:
name: Integration tests
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.19.x'
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install cram
run: pip install cram --user
- name: Check out code
uses: actions/checkout@v2
- name: Build binary
run: go build
- name: Run tests
run: PATH=$PWD:$PATH cram -v tests/*.t