Skip to content

Commit

Permalink
update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
vendyp committed Jan 21, 2024
1 parent 52b3fc0 commit 77a05ae
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 25 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/mylib-abstractions-build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: MyLib Abstractions Build
name: Abstractions Build

on:
push:
Expand All @@ -8,21 +8,21 @@ on:
paths:
- 'src/'
- 'tests/'

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
working-directory: src/MyLib.Abstractions
run: dotnet restore
- name: Build
working-directory: src/MyLib.Abstractions
run: dotnet build --no-restore
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
working-directory: src/MyLib.Abstractions
run: dotnet restore
- name: Build
working-directory: src/MyLib.Abstractions
run: dotnet build --no-restore
24 changes: 12 additions & 12 deletions .github/workflows/mylib-infrastructure-build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: MyLib Infrastructure Build
name: Infrastructure Build

on:
push:
Expand All @@ -15,14 +15,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
working-directory: src/MyLib.Infrastructure
run: dotnet restore
- name: Build
working-directory: src/MyLib.Infrastructure
run: dotnet build --no-restore
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
working-directory: src/MyLib.Infrastructure
run: dotnet restore
- name: Build
working-directory: src/MyLib.Infrastructure
run: dotnet build --no-restore

0 comments on commit 77a05ae

Please sign in to comment.