Skip to content

Improve install script PATH handling #3

Improve install script PATH handling

Improve install script PATH handling #3

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
cache-dependency-path: go.sum
- name: Check Go modules
run: |
go mod tidy
git diff --exit-code -- go.mod go.sum
- name: Check installer syntax
run: sh -n install.sh
- name: Test
run: go test ./...
- name: Build
run: go build -o /tmp/segmentstream ./cmd/segmentstream
goreleaser:
name: GoReleaser Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
cache-dependency-path: go.sum
- name: Check GoReleaser config
uses: goreleaser/goreleaser-action@v7
with:
distribution: goreleaser
version: "~> v2"
args: check