Skip to content

Commit 2235981

Browse files
authored
Changed YML extensions to YAML. (#198)
1 parent 0a9e0e9 commit 2235981

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

Diff for: .github/workflows/build.yml renamed to .github/workflows/build.yaml

+8-7
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,17 @@ on:
1111

1212
jobs:
1313
build:
14+
name: Build & Test Solution
1415
runs-on: ubuntu-latest
1516
steps:
16-
- uses: actions/checkout@v3
17-
- name: Setup .NET
18-
uses: actions/setup-dotnet@v3
19-
with:
20-
dotnet-version: 7.0.x
17+
- name: Checkout Repository
18+
uses: actions/checkout@v4
19+
2120
- name: Restore dependencies
2221
run: dotnet restore
23-
- name: Build
22+
23+
- name: Build Solution
2424
run: dotnet build --no-restore
25-
- name: Test
25+
26+
- name: Test Solution
2627
run: dotnet test --no-build --verbosity normal --filter Category=Unit

Diff for: CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Changed
11+
12+
- Changed YML extensions to YAML.
13+
1014
### Removed
1115

1216
- Removed `ExceptionDetail` and dependency from `System.Text.Json`.

Diff for: docker-compose.yml renamed to docker-compose.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: '3.8'
21
services:
32
logitar_mssql:
43
image: mcr.microsoft.com/mssql/server:2022-latest

0 commit comments

Comments
 (0)