Use make test in ci #28
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - '**.md' | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| paths-ignore: | |
| - '**.md' | |
| jobs: | |
| main: | |
| name: Run tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Setup | |
| uses: actions/setup-go@v2 | |
| with: | |
| go-version: "1.24" | |
| - name: Install tools and dependencies | |
| run: make deps | |
| - name: Setup | |
| run: make setup | |
| - name: Test | |
| run: make test |