diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..57cb31d --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,11 @@ +name: Run Unit and Integration tests +on: [push] +jobs: + Build-And-Test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Setup .NET Core SDK + uses: actions/setup-dotnet@v4 + - name: Test with the dotnet CLI + run: dotnet test