Skip to content

Bump pycryptodome from 3.11.0 to 3.19.1 in /test_server #146

Bump pycryptodome from 3.11.0 to 3.19.1 in /test_server

Bump pycryptodome from 3.11.0 to 3.19.1 in /test_server #146

Workflow file for this run

on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.18.x, 1.19.x, 1.20.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Restore dependencies cache
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Unit tests
run: make test
- name: Upload coverage report to codecov
if: ${{ matrix.os == 'ubuntu-latest'}}
run: bash <(curl -s https://codecov.io/bash)