From b104c33126d8bd6499dc0ae9ea3f37c809f57a38 Mon Sep 17 00:00:00 2001 From: Travis Shears Date: Mon, 23 Mar 2026 15:03:02 +0100 Subject: [PATCH] add fargo action --- .github/workflows/test.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..775d9f1 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,28 @@ +name: Unit Tests + +on: + push: + branches: [main] + +jobs: + test: + runs-on: docker + steps: + - run: echo All good! + # test: + # runs-on: ubuntu-latest + + # steps: + # - name: Checkout code + # uses: actions/checkout@v4 + + # - name: Set up Gleam + # uses: gleam-lang/setup-gleam@v1 + # with: + # gleam-version: latest + + # - name: Install dependencies + # run: cd weather_portal && gleam deps download + + # - name: Run tests + # run: cd weather_portal && gleam test