Skip to content

Merge pull request #87 from hartwork/dependabot/github_actions/action… #341

Merge pull request #87 from hartwork/dependabot/github_actions/action…

Merge pull request #87 from hartwork/dependabot/github_actions/action… #341

# Copyright (C) 2020 Sebastian Pipping <[email protected]>
# Licensed under GPL v3 or later
name: Build and test
on:
- pull_request
- push
defaults:
run:
shell: bash
jobs:
build_and_test:
name: Build and test
strategy:
fail-fast: false
matrix:
# The ideas is to cover both the oldest and the youngest supported
# version, there is no particualr need for anything in between.
go-version: ['1.20']
runs-on: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
with:
go-version: ${{ matrix.go-version }}
- name: Build and test
run: |-
set -x
cd v2
go build -race -v ./cmd/wait-for-it
./wait-for-it --help
./wait-for-it \
--timeout 2 \
--service github.com:80 \
--service github.com:443 \
-- \
sh -c 'exit 123' \
|| [ $? = 123 ]
go test -race -v -coverprofile=cover.out ./...
go tool cover -func=cover.out | tee cover-report.txt
go tool cover -html=cover.out -o cover-report.htm
[[ $(grep ^total: < cover-report.txt | awk '{print $3}') = 100.0% ]]
- name: "Require empty diff for: goimports"
run: |-
set -x
( cd /tmp && go install golang.org/x/tools/cmd/[email protected] )
git ls-files \*.go | xargs goimports -w
git ls-files \*.go | xargs git diff --exit-code --
- name: "Require empty diff for: gofmt"
run: |-
set -x
git ls-files \*.go | xargs gofmt -s -w
git ls-files \*.go | xargs git diff --exit-code --
- name: "Require empty diff for: go mod tidy"
run: |-
set -x
cd v2
go mod tidy -v
git diff --exit-code -- go.mod go.sum
- name: "Create articate for coverage report"
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: coverage__${{ matrix.runs-on }}
path: v2/cover*
if-no-files-found: error