diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index d6405c9a..d4184c09 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -4,28 +4,28 @@ on: workflow_dispatch: inputs: buildAutoMoq: - description: "Build AutoMoq" + description: 'Build AutoMoq' required: true type: boolean default: true buildAutoNSubstitute: - description: "Build AutoNSubstitute" + description: 'Build AutoNSubstitute' required: true type: boolean default: true buildAutoFakeItEasy: - description: "Build AutoFakeItEasy" + description: 'Build AutoFakeItEasy' required: true type: boolean default: true environment: - description: "Environment" + description: 'Environment' type: environment required: true default: prod push: branches: - - "master" # Run the workflow when pushing to the master branch + - 'master' paths: - 'src/**' - 'GitVersion.yml' @@ -76,7 +76,7 @@ jobs: - name: 🗜️ install GitVersion uses: gittools/actions/gitversion/setup@v0 with: - versionSpec: "5.x" + versionSpec: '5.x' - name: 🎱 determine version id: gitversion uses: gittools/actions/gitversion/execute@v0 diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 3e617216..a75fd2e5 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -1,9 +1,9 @@ -name: "CodeQL" +name: 'CodeQL: Semantic code analysis' on: push: branches: - - "master" + - 'master' paths: - 'src/**' - '.github/workflows/codeql.yml' @@ -53,4 +53,4 @@ jobs: - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v2 with: - category: "/language:${{matrix.language}}" + category: '/language:${{matrix.language}}' diff --git a/.github/workflows/fossa-scan.yml b/.github/workflows/fossa-scan.yml index 80126aa6..bf89f172 100644 --- a/.github/workflows/fossa-scan.yml +++ b/.github/workflows/fossa-scan.yml @@ -1,9 +1,9 @@ -name: Check license compliance and security issues FOSSA +name: 'FOSSA: License & security scan' on: push: branches: - - "master" # Run the workflow when pushing to the master branch + - 'master' paths: - 'src/**' - '.github/workflows/fossa-scan.yml' @@ -21,4 +21,3 @@ jobs: - uses: fossas/fossa-action@main with: api-key: ${{ secrets.FOSSA_API_KEY }} - diff --git a/.github/workflows/test-mutations.yml b/.github/workflows/test-mutations.yml index ec6c8ae5..4472c640 100644 --- a/.github/workflows/test-mutations.yml +++ b/.github/workflows/test-mutations.yml @@ -1,10 +1,10 @@ -name: test-mutations +name: 'Stryker.NET: Mutation testing' on: workflow_dispatch: push: branches: - - "master" + - 'master' paths: - 'src/**' - 'stryker-config.yml'