diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml new file mode 100644 index 0000000..c4f433c --- /dev/null +++ b/.github/workflows/pr.yaml @@ -0,0 +1,17 @@ +name: Pull Request + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Setup dotnet + uses: actions/setup-dotnet@v3 + - name: Install dependencies + run: dotnet restore + - name: Build + run: dotnet build + - name: Test + run: dotnet test