Skip to content

build(deps): update module golang.org/x/term to v0.19.0 #1882

build(deps): update module golang.org/x/term to v0.19.0

build(deps): update module golang.org/x/term to v0.19.0 #1882

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout git repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "./go.mod"
- name: Compile app
run: go build
check-formatting:
name: Check formatting
runs-on: ubuntu-latest
steps:
- name: Checkout git repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "./go.mod"
- name: Check formatting
run: gofmt -l .
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout git repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "./go.mod"
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
version: latest