From 8d61e2666b8d6b6c05a4955da5e2a662a5425c2b Mon Sep 17 00:00:00 2001 From: Lucas EECKHOUTTE Date: Thu, 16 Apr 2026 18:09:32 +0200 Subject: [PATCH] [+] add La Mira for test build on push --- .github/workflows/La-Mira.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/La-Mira.yml diff --git a/.github/workflows/La-Mira.yml b/.github/workflows/La-Mira.yml new file mode 100644 index 0000000..6aec709 --- /dev/null +++ b/.github/workflows/La-Mira.yml @@ -0,0 +1,25 @@ +name: La Mira + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: '1.20' + + - name: Build + run: go build -v ./... + + - name: Test + run: go test -v ./...