From 1810edd225f805b6ed5327cf0267b910ad941c91 Mon Sep 17 00:00:00 2001 From: zervo Date: Fri, 14 Feb 2025 17:13:51 +0100 Subject: [PATCH] Add test workflow --- .forgejo/workflows/test.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .forgejo/workflows/test.yml diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml new file mode 100644 index 0000000..fc7f659 --- /dev/null +++ b/.forgejo/workflows/test.yml @@ -0,0 +1,16 @@ +on: [push] +jobs: + build: + runs-on: docker + steps: + # Step 1: Check out the code + - uses: actions/checkout@v3 + + # Step 2: Set up go environment + - uses: actions/setup-go@v4 + with: + go-version-file: '/workspace/FLUX/GoSBHPF/go.mod' + + # Step 3: Set the working directory and run the project tests + - run: go test + working-directory: /workspace/FLUX/GoSBHPF/SBHPFv1 \ No newline at end of file