Skip to content

fix(deps): update go modules #1990

fix(deps): update go modules

fix(deps): update go modules #1990

Workflow file for this run

name: CFT CLI Tests
on:
push:
branches:
- 'master'
paths:
- 'cli/**'
- '.github/workflows/test-cli.yml'
pull_request:
branches:
- 'master'
paths:
- 'cli/**'
- '.github/workflows/test-cli.yml'
concurrency:
group: '${{github.workflow}}-${{ github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
unit:
name: ${{ matrix.operating-system }} unit tests
runs-on: ${{ matrix.operating-system }}
defaults:
run:
shell: bash
working-directory: 'cli'
strategy:
fail-fast: false
matrix:
operating-system: [ubuntu-latest]
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
with:
go-version-file: cli/go.mod
cache-dependency-path: cli/go.sum
- run: |-
make test