0
0
mirror of https://github.com/alex289/CleanArchitecture.git synced 2025-07-01 11:02:57 +00:00

chore: Rename workflow jobs and steps

This commit is contained in:
alex289 2023-11-16 22:06:58 +01:00
parent 5200f35f5b
commit f47ecdfcf7
No known key found for this signature in database
GPG Key ID: 573F77CD2D87F863
2 changed files with 4 additions and 4 deletions

View File

@ -27,7 +27,7 @@ jobs:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Setup dotnet - name: Install .NET Core
uses: actions/setup-dotnet@v3 uses: actions/setup-dotnet@v3
with: with:
dotnet-version: '8.x.x' dotnet-version: '8.x.x'

View File

@ -11,7 +11,7 @@ env:
DOCKER_IMAGE: alexdev28/clean-architecture DOCKER_IMAGE: alexdev28/clean-architecture
jobs: jobs:
build: ci:
runs-on: ubuntu-latest runs-on: ubuntu-latest
env: env:
solutionFile: CleanArchitecture.sln solutionFile: CleanArchitecture.sln
@ -19,7 +19,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Setup .NET - name: Install .NET Core
uses: actions/setup-dotnet@v3 uses: actions/setup-dotnet@v3
with: with:
dotnet-version: | dotnet-version: |
@ -43,7 +43,7 @@ jobs:
- name: Test - name: Test
run: dotnet test --no-build --verbosity normal run: dotnet test --no-build --verbosity normal
docker: cd:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: build needs: build
if: github.ref == 'refs/heads/main' if: github.ref == 'refs/heads/main'