Skip to content

Commit

Permalink
ci: Add Test job.
Browse files Browse the repository at this point in the history
Signed-off-by: Philip Conrad <[email protected]>
  • Loading branch information
philipaconrad committed Mar 27, 2024
1 parent 2788bcb commit ce9e452
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build
name: Checks

on:
workflow_dispatch: {}
Expand Down Expand Up @@ -26,3 +26,20 @@ jobs:
run: dotnet restore
- name: Build
run: dotnet build

smoke-test:
runs-on: ubuntu-latest
steps:
- name: Tune GitHub-hosted runner network
uses: smorimoto/tune-github-hosted-runner-network@v1
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: "6.0.x"
- name: Install dependencies
working-directory: test
run: dotnet restore
- name: Test
working-directory: test
run: dotnet test

0 comments on commit ce9e452

Please sign in to comment.