From 6368f7774856f85c02c0c1b0bebb17ddb71d3940 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Miko=C5=82ajczyk?= <53557466+adimiko@users.noreply.github.com> Date: Mon, 5 Feb 2024 05:43:31 +0100 Subject: [PATCH] Create pr.yaml --- .github/workflows/pr.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/pr.yaml 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