Skip to content

Update dependencies, use go 1.22 #68

Update dependencies, use go 1.22

Update dependencies, use go 1.22 #68

Workflow file for this run

name: windows
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
strategy:
matrix:
go-version: [1.22.x]
os: [windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- name: Checkout code
uses: actions/checkout@v4
with:
path: github.com/vanadium/go.lib
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache: true
cache-dependency-path: github.com/vanadium/go.lib/go.sum
- name: Test
run: |
cd github.com/vanadium/go.lib
go test --race --covermode=atomic ./...