Skip to content

Merge pull request #223 from mazrean/dependabot/go_modules/github.com… #462

Merge pull request #223 from mazrean/dependabot/go_modules/github.com…

Merge pull request #223 from mazrean/dependabot/go_modules/github.com… #462

Workflow file for this run

name: CI
on:
push:
branches:
- 'main'
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
GOCACHE: "/tmp/go/cache"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Set go build cache
uses: actions/cache@v4
with:
path: /tmp/go/cache
key: ${{ runner.os }}-go-build-${{ github.ref }}-${{ github.sha }}
restore-keys: |
${{ runner.os }}-go-build-${{ github.ref }}-
${{ runner.os }}-go-build-
- run: go build -o ssh-server .
- uses: actions/upload-artifact@v4
with:
name: ssh-server
path: ssh-server
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: golangci-lint
uses: reviewdog/[email protected]
with:
go_version_file: go.mod
reporter: github-pr-check
github_token: ${{ secrets.GITHUB_TOKEN }}
fail_on_error: true
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: go test ./... -v -coverprofile=coverage.txt -race -vet=off
- name: Upload coverage data
uses: codecov/codecov-action@v4
with:
file: ./coverage.txt
- uses: actions/upload-artifact@v4
with:
name: coverage.txt
path: coverage.txt