From 2f2f97b916c9724735c31932479c995bcfefc8a8 Mon Sep 17 00:00:00 2001 From: Jordan Marr Date: Sun, 17 Dec 2023 15:55:47 -0500 Subject: [PATCH] Added workflow -> build.fsx --- .github/workflows/dotnet.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/dotnet.yml diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml new file mode 100644 index 0000000..0e8de9c --- /dev/null +++ b/.github/workflows/dotnet.yml @@ -0,0 +1,24 @@ +# This workflow will build a .NET project +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net + +name: .NET + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: windows-2022 + + steps: + - uses: actions/checkout@v3 + - name: Setup .NET + uses: actions/setup-dotnet@v3 + with: + dotnet-version: 6.0.x + - name: Run CI + run: dotnet fsi src/build.fsx