From 049167382c32ee331710e68612b21ff48b30a384 Mon Sep 17 00:00:00 2001 From: NicoVIII Date: Fri, 26 Jul 2024 11:58:02 +0200 Subject: [PATCH] Add github actions pipeline --- .github/workflows/fsharp.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/fsharp.yml diff --git a/.github/workflows/fsharp.yml b/.github/workflows/fsharp.yml new file mode 100644 index 0000000..3758b9e --- /dev/null +++ b/.github/workflows/fsharp.yml @@ -0,0 +1,18 @@ +name: Run F# tests + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Run tests + run: | + find . -type d -name "fsharp" -execdir find {} -name "test-all.sh" \; | while read testScript + do + "$testScript" + done