Skip to content

Update module golang.org/x/term to v0.27.0 #488

Update module golang.org/x/term to v0.27.0

Update module golang.org/x/term to v0.27.0 #488

Workflow file for this run

name: Go lint, build, and test
on:
push:
branches: main
pull_request:
branches: main
jobs:
lint:
runs-on: ubuntu-latest
container: ghcr.io/opencontainers/golangci-lint:v1.39.0
steps:
- uses: actions/checkout@v3
- name: Lint
run: make lint
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18.4
- name: Build
run: make build
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18.4
- name: Formatting
run: if [ -n "$(go fmt)" ]; then echo 'Code is not formatted with "go fmt"'; false; fi
- name: Test
run: make test