This repository has been archived by the owner on Sep 23, 2024. It is now read-only.
Bump github.com/urfave/cli/v2 from 2.27.1 to 2.27.4 #519
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
workflow_dispatch: {} | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
lint: | |
name: Linter Analysis | |
uses: ./.github/workflows/lint.yml | |
build: | |
name: Build | |
uses: ./.github/workflows/build.yml | |
unit-tests: | |
name: Unit Tests | |
uses: ./.github/workflows/unit-test.yml | |
needs: build | |
sonar-scan: | |
name: SonarCloud Scan | |
uses: ./.github/workflows/sonar-scan.yml | |
needs: unit-tests | |
secrets: inherit | |
e2e-tests: | |
name: E2E Tests | |
uses: ./.github/workflows/e2e.yml |