Skip to content

Bump github.com/urfave/cli/v2 from 2.27.2 to 2.27.3 #10

Bump github.com/urfave/cli/v2 from 2.27.2 to 2.27.3

Bump github.com/urfave/cli/v2 from 2.27.2 to 2.27.3 #10

Workflow file for this run

# workflow which lints and checks the rust code on every push and pull request
name: Check
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
# https://github.com/actions/checkout
- name: checkout
uses: actions/checkout@v4
# https://github.com/actions/setup-go
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
# https://github.com/pre-commit/action
- name: run pre-commit
uses: pre-commit/action@v3.0.1
env:
SKIP: no-commit-to-branch
golangci-lint:
runs-on: ubuntu-latest
steps:
# https://github.com/actions/checkout
- name: checkout
uses: actions/checkout@v4
# https://github.com/actions/setup-go
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
# https://github.com/golangci/golangci-lint-action
- name: golangci-lint
uses: golangci/golangci-lint-action@v6