Skip to content

Bump github.com/pterm/pterm from 0.12.69 to 0.12.71 #8

Bump github.com/pterm/pterm from 0.12.69 to 0.12.71

Bump github.com/pterm/pterm from 0.12.69 to 0.12.71 #8

Workflow file for this run

name: Integration Test
on:
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 1.21
- name: Build
run: |
env CGO_ENABLED=0 go build -ldflags='-w -s' .
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 1.21
- name: Run Go tests
run: |
go test ./... -v
staticcheck:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 1.21
- name: Run static checks
run: |
go install honnef.co/go/tools/cmd/staticcheck@latest
{ ~/go/bin/staticcheck ./... ; }