Skip to content

Update module github.com/urfave/cli/v2 to v2.27.1 #24

Update module github.com/urfave/cli/v2 to v2.27.1

Update module github.com/urfave/cli/v2 to v2.27.1 #24

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test-and-coverage:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version-file: './go.mod'
- name: Test
run: make tests
- name: Build CLI app
run: make build_cli
- name: Upload coverage to Codecov (ubuntu-latest only)
if: matrix.os == 'ubuntu-latest'
uses: codecov/codecov-action@v3