From e6cdbc335070b96fb9da12690165342b2421fe37 Mon Sep 17 00:00:00 2001 From: Bobby <30593201+luciferreeves@users.noreply.github.com> Date: Fri, 17 Nov 2023 15:27:58 -0500 Subject: added action: test flow --- .github/workflows/meh.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/meh.yml diff --git a/.github/workflows/meh.yml b/.github/workflows/meh.yml new file mode 100644 index 0000000..cd1b92b --- /dev/null +++ b/.github/workflows/meh.yml @@ -0,0 +1,28 @@ +# This workflow will build a golang project +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go + +name: Build and Test mana + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Setting Up Go + uses: actions/setup-go@v4 + with: + go-version: '1.21' + + - name: Building mana verbosely + run: go build -v ./... + + - name: Running tests in verbose mode + run: go test -v ./... -- cgit v1.2.3