build(deps): bump github.com/go-git/go-git/v5 from 5.8.0 to 5.8.1 #57
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: PMZ CI Pipeline | |
on: pull_request | |
jobs: | |
lint: | |
name: Lint | |
runs-on: [ ubuntu-latest ] | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.17.x | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Gofmt | |
run: | | |
if [[ $(gofmt -l .) ]]; then | |
echo "Code is not formatted using fmt. Please use gofmt and push those changes to the remote." | |
exit 1 | |
fi | |
exit 0 | |
test: | |
needs: lint | |
runs-on: [ ubuntu-latest ] | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.17.x | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Go test | |
run: | | |
if [[ $(go test -v -race ./...) -ne 0 ]]; then | |
echo "Failed while running the test suite. All tests **must** pass." | |
exit 1 | |
fi | |
exit 0 | |
build: | |
needs: test | |
runs-on: [ ubuntu-latest ] | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.17.x | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Go test | |
run: | | |
if [[ $(go build -o bin/pmz) -ne 0 ]]; then | |
echo "Could not build project. Project must compile to proceed." | |
exit 1 | |
fi | |
exit 0 |