Skip to content

Merge pull request #42 from SagarMaheshwary/feature/ssh-config-host-l… #28

Merge pull request #42 from SagarMaheshwary/feature/ssh-config-host-l…

Merge pull request #42 from SagarMaheshwary/feature/ssh-config-host-l… #28

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Download dependencies
run: go mod download
- name: Check formatting
run: test -z "$(gofmt -l .)"
- name: Vet
run: go vet ./...
- name: Test
run: go test ./...