Skip to content

Bump golang.org/x/term from 0.23.0 to 0.24.0 (#527) #669

Bump golang.org/x/term from 0.23.0 to 0.24.0 (#527)

Bump golang.org/x/term from 0.23.0 to 0.24.0 (#527) #669

Workflow file for this run

name: Go
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go: ["stable"]
steps:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Install Task
uses: arduino/setup-task@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Check out code
uses: actions/checkout@v4
- name: Get dependencies
run: task deps
- name: Install dependencies
run: task setup
- name: Build linux
run: task linux
- name: Build windows
run: task windows
- name: Test
run: task test