Skip to content

Bump github.com/jaksi/sshutils from 0.0.18 to 0.0.19 #34

Bump github.com/jaksi/sshutils from 0.0.18 to 0.0.19

Bump github.com/jaksi/sshutils from 0.0.18 to 0.0.19 #34

Workflow file for this run

name: PR check
on:
pull_request:
branches:
- main
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: golangci/golangci-lint-action@master
test:
name: Test
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@main
with:
go-version: ^1.23
- run: go test -race -timeout 1m