Skip to content

Bump golang.org/x/term from 0.24.0 to 0.25.0 #43

Bump golang.org/x/term from 0.24.0 to 0.25.0

Bump golang.org/x/term from 0.24.0 to 0.25.0 #43

Workflow file for this run

name: Test GoLang Project
on:
push:
branches:
- main
- dev
pull_request:
branches:
- '*'
permissions:
contents: read
pull-requests: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.22.x'
- name: Install Dependencies
run: go mod download
- name: Build Project
run: make build
- name: Test with the Go CLI
run: make test