From 7d19ab0683bfee3925136f24fccf5696c912c725 Mon Sep 17 00:00:00 2001 From: Kevin Barabash Date: Mon, 30 Oct 2023 22:57:55 -0400 Subject: [PATCH] Setup CI to run tests (#3) * Setup CI to run tests * remove 'install F#' step * fix 'test' step --- .github/workflows/pr.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/pr.yml diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml new file mode 100644 index 00000000..8b60d479 --- /dev/null +++ b/.github/workflows/pr.yml @@ -0,0 +1,17 @@ +on: [pull_request] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Setup .NET 7.x + uses: actions/setup-dotnet@v3 + with: + dotnet-version: "7.x" + - name: Install tools + run: dotnet tool restore + - name: Build + run: dotnet build + - name: Test + run: dotnet test