fix: subject was not parsing from env or config (#11) #64
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: Go Tests | |
| on: | |
| push: | |
| branches: ["main", "develop"] | |
| pull_request: | |
| branches: ["*"] | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Go | |
| uses: actions/setup-go@v2 | |
| with: | |
| go-version: 1.22 | |
| - name: Download dependencies | |
| run: make tidy | |
| - name: Build | |
| run: make build | |
| - name: Test | |
| run: make test | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v2 |