From 4f65ed4006ec516b5468e543643e0b6e63f60cb4 Mon Sep 17 00:00:00 2001 From: Etienne BAUDOUX Date: Fri, 28 Aug 2020 13:58:46 -0700 Subject: [PATCH] Create RichNav.yml (#66) --- .github/workflows/RichNav.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/RichNav.yml diff --git a/.github/workflows/RichNav.yml b/.github/workflows/RichNav.yml new file mode 100644 index 0000000..68cc9b7 --- /dev/null +++ b/.github/workflows/RichNav.yml @@ -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/RichCodeNavIndexer@v0.1 + with: + languages: csharp + repo-token: ${{ secrets.GITHUB_TOKEN }}