Merge pull request #74 from grasse-oss/release-please--branches--main… #115
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 Test | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'feat/**' | |
- 'fix/**' | |
- 'refactor/**' | |
- 'test/**' | |
- 'ci/**' | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
name: Unit tests | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '^1.20.2' | |
- run: make test |