remove os dependent import #36
Workflow file for this run
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: build_and_release | |
on: | |
push: | |
tags: | |
- "v*" | |
permissions: | |
contents: write | |
jobs: | |
build_and_release: | |
strategy: | |
fail-fast: false | |
matrix: | |
go: [1.21] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
name: Build and release ldap-cli | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install pass keyring | |
run: ./scripts/setup/keyring.sh | |
shell: bash | |
- name: Install upx | |
uses: crazy-max/ghaction-upx@v3 | |
with: | |
install-only: true | |
- name: Install go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Install go tools | |
run: | | |
go install golang.org/x/tools/gopls@latest && \ | |
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest && \ | |
go install github.com/axw/gocov/gocov@latest | |
- name: Run linters | |
run: gofmt -s -d ./ && golangci-lint run -v | |
- name: Setup openldap mock-up | |
uses: isbang/compose-action@v1.5.1 | |
with: | |
compose-file: "./oat/docker-compose.yml" | |
- name: Test & publish code coverage | |
uses: paambaati/codeclimate-action@v5.0.0 | |
env: | |
TEST_OAT: "true" | |
CC_TEST_REPORTER_ID: ${{ secrets.CODECLIMATE_REPORTER_ID }} | |
with: | |
coverageCommand: gocov test ./... -coverprofile=c.out | |
coverageLocations: ./c.out:gocov | |
debug: true | |
prefix: github.com/${{ github.repository }} | |
- name: Precompile binaries and upload assets | |
uses: cli/gh-extension-precompile@v1 | |
with: | |
build_script_override: "scripts/build.sh" | |
go_version: ${{ matrix.go }} |