From ed2d4f9f35821f3d8e6a5b808895ea6c3666ac74 Mon Sep 17 00:00:00 2001 From: Noelle Caldwell Date: Tue, 29 Dec 2020 16:55:44 -0800 Subject: [PATCH] Create main.yml basic build with richnav --- .github/workflows/main.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..e286da9 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,26 @@ +name: CI with Rich Nav +on: + push: + branches: [ master ] + pull_request: + + # Allows you to run this workflow manually from the Actions tab + # workflow_dispatch: + +jobs: + richnav: + runs-on: windows-latest + steps: + - uses: actions/checkout@v2 + - name: setup .NET Core + uses: actions/setup-dotnet@v1 + - name: Install dependencies + run: dotnet restore + - name: build with dotnet + run: dotnet build + - name: Rich Code Nav Indexer + uses: microsoft/RichCodeNavIndexer@v0.1 + with: + languages: csharp + environment: development + repo-token: ${{ secrets.GITHUB_TOKEN }}