Thanks to visit codestin.com
Credit goes to github.com

Skip to content

feat(process): implement platform-specific process management for Uni… #76

feat(process): implement platform-specific process management for Uni…

feat(process): implement platform-specific process management for Uni… #76

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
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
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
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
# - name: golangci-lint
# uses: golangci/golangci-lint-action@v3
# with:
# version: latest