Skip to content

v0.0.104

v0.0.104 #281

Workflow file for this run

name: Go
on: [ push ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go 1.22.1
uses: actions/setup-go@v5
with:
go-version: 1.22.1
cache: true
id: go
- name: Build
run: go build -v .
- name: Test
run: go test -race `go list ./... | grep -v "aws\|sftp\|http"`