Skip to content

updating README

updating README #52

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Test and Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
check-latest: true
cache: true
- name: Install dependencies
run: go mod download
- name: Run Unit Tests
run: go test -v -coverprofile=coverage.out $(go list ./... | grep -v cmd)
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
- name: Run govulncheck
continue-on-error: true
run: |
go install golang.org/x/vuln/cmd/govulncheck@latest
govulncheck ./...
- name: Build Client
run: go build -v -o go-send-client cmd/client/main.go
- name: Build Server
run: go build -v -o go-send-server cmd/server/main.go