Skip to content

Commit

Permalink
feat: release test
Browse files Browse the repository at this point in the history
  • Loading branch information
ikpil committed Sep 18, 2023
1 parent 4e12125 commit 1457bf3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
paths:
- '**.cs'
- '**.csproj'
- '**.sln'
- '**.sln'

jobs:
build-and-test:
Expand All @@ -20,19 +20,19 @@ jobs:
matrix:
dotnet-version: [ '7.0.x' ]
os: [ windows-latest, ubuntu-latest, macos-latest ]

steps:
- uses: actions/checkout@v3
- name: Setup .NET SDK
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}

- name: Install dependencies
- name: Restore dependencies
run: dotnet restore

- name: Build
run: dotnet build --configuration Release --no-restore

- name: Test
run: dotnet test --no-restore --verbosity normal
run: dotnet test --no-build --verbosity normal

0 comments on commit 1457bf3

Please sign in to comment.