Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ci_template.yaml #10

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci_template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
fetch-depth: 2

- name: .NET Setup
uses: zyactions/dotnet-setup@v1
uses: zyactions/dotnet-setup@8f4b644ff5ff19bba913663df285b7b7278bb724 # v1.0.1
with:
global-json-file: ${{ env.DOTNET_GLOBAL_JSON }}
problem-matcher: false
Expand All @@ -51,15 +51,15 @@ jobs:
restore-keys: ${{ runner.os }}-nuget-

- name: .NET Restore
uses: zyactions/dotnet-restore@v1
uses: zyactions/dotnet-restore@bffc71e1a5275122a2795bf2912804f0185db27c # v1.1.0
with:
working-directory: ${{ inputs.path }}

# TODO: Add additional generic '.editorconfig' linting, e.g. for `*.csproj` files
# TODO: Always lint all files, if '.editorconfig' has changed

- name: .NET Lint
uses: zyactions/dotnet-lint@v1
uses: zyactions/dotnet-lint@a86bc2ec7f63119966cf70cafb56de1c2681cc85 # v1.1.0
with:
working-directory: ${{ inputs.path }}
# This list is empty for the initial commit. NET Lint will lint all files in this case.
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
output: ${{ env.FILTERED_SOLUTION }}

- name: .NET Setup
uses: zyactions/dotnet-setup@v1
uses: zyactions/dotnet-setup@8f4b644ff5ff19bba913663df285b7b7278bb724 # v1.0.1
with:
global-json-file: ${{ env.DOTNET_GLOBAL_JSON }}
problem-matcher: false
Expand All @@ -104,7 +104,7 @@ jobs:
restore-keys: ${{ runner.os }}-nuget-

- name: .NET Restore
uses: zyactions/dotnet-restore@v1
uses: zyactions/dotnet-restore@bffc71e1a5275122a2795bf2912804f0185db27c # v1.1.0
with:
workspace: ${{ env.FILTERED_SOLUTION }}

Expand Down