From f51edc98f22b2f9f38a686b333853af513da7245 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Tue, 15 Dec 2020 01:08:26 +0000 Subject: [PATCH] Updating GHES workflows --- ci/{dotnet-core.yml => dotnet.yml} | 10 +++++----- ci/properties/dotnet-core.properties.json | 6 ------ ci/properties/dotnet.properties.json | 6 ++++++ icons/dotnet.svg | 1 + icons/dotnetcore.svg | 1 - 5 files changed, 12 insertions(+), 12 deletions(-) rename ci/{dotnet-core.yml => dotnet.yml} (62%) delete mode 100644 ci/properties/dotnet-core.properties.json create mode 100644 ci/properties/dotnet.properties.json create mode 100644 icons/dotnet.svg delete mode 100644 icons/dotnetcore.svg diff --git a/ci/dotnet-core.yml b/ci/dotnet.yml similarity index 62% rename from ci/dotnet-core.yml rename to ci/dotnet.yml index 9ee1a7d..aa0a093 100644 --- a/ci/dotnet-core.yml +++ b/ci/dotnet.yml @@ -1,4 +1,4 @@ -name: .NET Core +name: .NET on: push: @@ -13,13 +13,13 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Setup .NET Core + - name: Setup .NET uses: actions/setup-dotnet@v1 with: dotnet-version: 3.1.301 - - name: Install dependencies + - name: Restore dependencies run: dotnet restore - name: Build - run: dotnet build --configuration Release --no-restore + run: dotnet build --no-restore - name: Test - run: dotnet test --no-restore --verbosity normal + run: dotnet test --no-build --verbosity normal diff --git a/ci/properties/dotnet-core.properties.json b/ci/properties/dotnet-core.properties.json deleted file mode 100644 index 3386a3d..0000000 --- a/ci/properties/dotnet-core.properties.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "name": ".NET Core", - "description": "Build and test a .NET Core or ASP.NET Core project.", - "iconName": "dotnetcore", - "categories": ["C#", "F#", "Visual Basic", "ASP", "ASP.NET", ".NET"] -} diff --git a/ci/properties/dotnet.properties.json b/ci/properties/dotnet.properties.json new file mode 100644 index 0000000..b3feafb --- /dev/null +++ b/ci/properties/dotnet.properties.json @@ -0,0 +1,6 @@ +{ + "name": ".NET", + "description": "Build and test a .NET or ASP.NET Core project.", + "iconName": "dotnet", + "categories": ["C#", "F#", "Visual Basic", "ASP", "ASP.NET", ".NET"] +} diff --git a/icons/dotnet.svg b/icons/dotnet.svg new file mode 100644 index 0000000..9cb09d7 --- /dev/null +++ b/icons/dotnet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/dotnetcore.svg b/icons/dotnetcore.svg deleted file mode 100644 index 6d31060..0000000 --- a/icons/dotnetcore.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file