Skip to content

Commit

Permalink
Exclude whitespaces check from CI
Browse files Browse the repository at this point in the history
  • Loading branch information
skuill committed Aug 20, 2023
1 parent 2077869 commit 997b7bf
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,10 @@ jobs:
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- name: Restore Packages
run: dotnet restore
- name: Lint
run: dotnet format --verify-no-changes
- name: Check format style
run: dotnet format style --verify-no-changes
- name: Check format analyzers
run: dotnet format analyzers --verify-no-changes
- name: Build
run: dotnet build --configuration Release --verbosity minimal
- name: Test (Unit)
Expand Down

0 comments on commit 997b7bf

Please sign in to comment.