fix(deps): update github.com/emersion/go-sasl digest to b788ff2 #57
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 Actions # don't edit while the badge was depend on this | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| tags: | |
| - v* | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| lint-build-test: | |
| name: Lint/Test | |
| strategy: | |
| matrix: | |
| go-version: [1.16.x, 1.17.x, 1.18.x] | |
| os: [ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Install Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: ${{matrix.go-version}} | |
| - name: Checkout Code Base | |
| uses: actions/checkout@v4 | |
| - name: Restore Go Module Cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/go/pkg/mod | |
| key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
| restore-keys: | | |
| ${{ runner.os }}-go- | |
| # - name: Run golangci-lint | |
| # uses: golangci/[email protected] | |
| - name: Build | |
| run: | | |
| go build -v ./... | |
| - name: Run Unit tests | |
| run: | | |
| go test -covermode=atomic -coverprofile=coverage.out ./... | |
| # - name: Upload coverage to Codecov | |
| # uses: codecov/codecov-action@v3 | |
| # with: | |
| # token: ${{ secrets.CODECOV_TOKEN }} |