GoReleaser Flags #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Unit and E2E Tests | |
on: | |
push: | |
tags-ignore: | |
- '**' | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
name: test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: ./.github/actions/setup | |
- shell: bash | |
run: make build | |
- shell: bash | |
run: make test-unit | |
- shell: bash | |
run: make test-e2e |