From f47ecdfcf7a829c876162cd7cf0ee3095199e2a4 Mon Sep 17 00:00:00 2001 From: alex289 Date: Thu, 16 Nov 2023 22:06:58 +0100 Subject: [PATCH] chore: Rename workflow jobs and steps --- .github/workflows/codeql.yml | 2 +- .github/workflows/dotnet.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 5be095b..3283936 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -27,7 +27,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 - - name: Setup dotnet + - name: Install .NET Core uses: actions/setup-dotnet@v3 with: dotnet-version: '8.x.x' diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 0c6027b..4f6d3ef 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -11,7 +11,7 @@ env: DOCKER_IMAGE: alexdev28/clean-architecture jobs: - build: + ci: runs-on: ubuntu-latest env: solutionFile: CleanArchitecture.sln @@ -19,7 +19,7 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Setup .NET + - name: Install .NET Core uses: actions/setup-dotnet@v3 with: dotnet-version: | @@ -43,7 +43,7 @@ jobs: - name: Test run: dotnet test --no-build --verbosity normal - docker: + cd: runs-on: ubuntu-latest needs: build if: github.ref == 'refs/heads/main'