chore: update docker releaser for directory #181
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: Test | |
on: | |
workflow_dispatch: | |
push: | |
branches: [master] | |
pull_request: | |
jobs: | |
run-tests: | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: technote-space/get-diff-action@v4 | |
with: | |
PATTERNS: | | |
**/**.go | |
go.mod | |
go.sum | |
- name: Set up Golang | |
uses: actions/setup-go@v3 | |
with: | |
go-version-file: go.mod | |
- name: Setup Golang caches | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/go-build | |
~/go/pkg/mod | |
key: ${{ runner.os }}-golang-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-golang- | |
- name: Build | |
run: go build -v ./... | |
- name: Test | |
run: go test -v ./... | |
- name: Test & Coverage Report creation | |
run: go test ./... -mod=readonly -timeout 12m -race -coverprofile=coverage.txt -covermode=atomic | |
if: env.GIT_DIFF | |
- name: Filter out DONTCOVER | |
run: | | |
excludelist="$(find ./ -type f -name '*.go' | xargs grep -l 'DONTCOVER')" | |
excludelist+=" $(find ./ -type f -name '*.pb.go')" | |
for filename in ${excludelist}; do | |
filename=$(echo $filename | sed 's/^./github.com\/arkeonetwork\/arkeo/g') | |
echo "Excluding ${filename} from coverage report..." | |
sed -i.bak "/$(echo $filename | sed 's/\//\\\//g')/d" coverage.txt | |
done | |
if: env.GIT_DIFF | |
- name: Upload Coverage Report | |
uses: codecov/codecov-action@v3 | |
with: | |
files: ./coverage.txt | |
fail_ci_if_error: false | |
if: env.GIT_DIFF | |
regression-test: | |
name: Regression Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup Golang | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.21.x | |
- name: Install Compose | |
uses: ndeloof/[email protected] | |
with: | |
version: v2.15.1 # defaults to 'latest' | |
legacy: true # will also install in PATH as `docker-compose` | |
- run: docker-compose --version | |
- name: Setup Docker buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Regression Tests | |
run: | | |
make test-regression-ci |