-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
894712d
commit a14bd1c
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,7 +37,8 @@ jobs: | |
dotnet: ['net6.0', 'net472', 'net471'] | ||
cloud_env: ['AZURE', 'GCP', 'AWS'] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
- name: Setup Dotnet | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
|
@@ -47,11 +48,10 @@ jobs: | |
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.x' | ||
- name: Run Linters | ||
uses: wearerequired/lint-action@v2 | ||
with: | ||
dotnet_format: true | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Run Linter | ||
uses: super-linter/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Setup dotnet-coverage | ||
run: dotnet tool install --global dotnet-coverage --version 17.8.4 | ||
|