Skip to content

Commit

Permalink
Adding the test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lookbusy1344 committed Oct 7, 2023
1 parent 87df659 commit b51928f
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Test

on:
push:
branches: [ "main", "extension" ]

pull_request:
branches: [ "main", "extension" ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Setup .NET SDK
uses: actions/setup-dotnet@v3.2.0
with:
dotnet-version: '7.0.x'

- name: Restore dependencies
run: dotnet restore

- name: Build
run: dotnet build --configuration Debug --no-restore RecordValueAnalyser.Test

- name: Test
run: dotnet test --no-restore

0 comments on commit b51928f

Please sign in to comment.