diff options
| author | Bobby <[email protected]> | 2023-11-17 15:27:58 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-11-17 15:27:58 -0500 |
| commit | e6cdbc335070b96fb9da12690165342b2421fe37 (patch) | |
| tree | 3cf2a3547dd25a6e761ff2694e1cc03bb2509519 | |
| parent | a797a2642018b69f7c35713c695bc767b24fcaab (diff) | |
| download | mana-e6cdbc335070b96fb9da12690165342b2421fe37.tar.xz mana-e6cdbc335070b96fb9da12690165342b2421fe37.zip | |
added action: test flow
| -rw-r--r-- | .github/workflows/meh.yml | 28 |
1 files changed, 28 insertions, 0 deletions
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 ./... |
