Skip to content

Commit

Permalink
add test CI action
Browse files Browse the repository at this point in the history
  • Loading branch information
bpapillon committed Jun 28, 2024
1 parent 8c8a508 commit cb3eb07
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,22 @@ jobs:
- name: Build Release
run: dotnet build src -c Release /p:ContinuousIntegrationBuild=true

test:
runs-on: ubuntu-latest

steps:
- name: Checkout repo
uses: actions/checkout@v3

- uses: actions/checkout@master

- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.x

- name: Build Release
run: dotnet test src

publish:
needs: [compile]
Expand Down

0 comments on commit cb3eb07

Please sign in to comment.