forked from jumattos/tester-game
-
Notifications
You must be signed in to change notification settings - Fork 2
33 lines (25 loc) · 924 Bytes
/
richnav-csharp.yml
File metadata and controls
33 lines (25 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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: ./csharp
- uses: microsoft/RichCodeNavIndexer@v0.1
with:
languages: csharp
repo-token: ${{ secrets.GITHUB_TOKEN }}