added ydb-go-sdk-auth-environ package blank import for use environmen… #37
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: Goose CI | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
strategy: | ||
fail-fast: false | ||
jobs: | ||
test: | ||
name: Run unit tests | ||
timeout-minutes: 10 | ||
strategy: | ||
matrix: | ||
go-version: ["1.20", "1.21", "1.22"] | ||
os: [ubuntu-latest] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Install Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{ matrix.go-version }} | ||
- name: Check Go code formatting | ||
run: | | ||
if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then | ||
gofmt -s -l . | ||
echo "Please format Go code by running: go fmt ./..." | ||
exit 1 | ||
fi | ||
- name: Run tests | ||
run: | | ||
mkdir -p bin | ||
go vet ./... | ||
go build ./... | ||
make test-packages | ||
- name: Install GoReleaser | ||
if: github.event_name == 'push' && github.ref == 'refs/heads/master' && matrix.go-version == '1.22' | ||
uses: goreleaser/goreleaser-action@v5 | ||
with: | ||
install-only: true | ||
- name: Gorelease dry-run | ||
if: github.event_name == 'push' && github.ref == 'refs/heads/master' && matrix.go-version == '1.22' | ||
run: | | ||
goreleaser release --skip=publish --snapshot --fail-fast --clean |