Skip to content

Bump golang.org/x/crypto from 0.25.0 to 0.26.0 in /server #643

Bump golang.org/x/crypto from 0.25.0 to 0.26.0 in /server

Bump golang.org/x/crypto from 0.25.0 to 0.26.0 in /server #643

Workflow file for this run

name: Go testing
on:
push:
paths:
- server/**
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
submodules: "true"
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
id: go
- name: Get dependencies
run: |
cd server && go mod download
- name: Test
run: cd server && go test -v ./...