-
Notifications
You must be signed in to change notification settings - Fork 28
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
Showing
1 changed file
with
33 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
### This template is meant to be used by a .NET Core repository running RichNav | ||
### Please fill anything marked above with a "# **** #" comment with the value appropriate for your repository | ||
name: Rich Code Navigation (.NET Core) | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: [ master ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: windows-latest | ||
|
||
steps: | ||
|
||
- uses: actions/checkout@v2 | ||
|
||
# **** Please change 'dotnet-version' to be the version of the .NET SDK used in your project **** # | ||
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: 3.1.101 | ||
|
||
# **** Please change 'working-directory' to be the location where your .SLN file is located **** # | ||
- name: Install dependencies | ||
run: dotnet restore | ||
working-directory: ./ClipboardZanager | ||
|
||
- uses: microsoft/[email protected] | ||
with: | ||
languages: csharp | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} |