Skip to content

Commit

Permalink
Text and syntax improvments
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrzajac committed Oct 16, 2023
1 parent 3251de7 commit 99492bc
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 14 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: "CodeQL"
name: 'CodeQL: Semantic code analysis'

on:
push:
branches:
- "master"
- 'master'
paths:
- 'src/**'
- '.github/workflows/codeql.yml'
Expand Down Expand Up @@ -53,4 +53,4 @@ jobs:
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"
category: '/language:${{matrix.language}}'
5 changes: 2 additions & 3 deletions .github/workflows/fossa-scan.yml
Original file line number Diff line number Diff line change
@@ -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'
Expand All @@ -21,4 +21,3 @@ jobs:
- uses: fossas/fossa-action@main
with:
api-key: ${{ secrets.FOSSA_API_KEY }}

4 changes: 2 additions & 2 deletions .github/workflows/test-mutations.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: test-mutations
name: 'Stryker.NET: Mutation testing'

on:
workflow_dispatch:
push:
branches:
- "master"
- 'master'
paths:
- 'src/**'
- 'stryker-config.yml'
Expand Down

0 comments on commit 99492bc

Please sign in to comment.