SSPROD-28198 Update Jenkinsfile #43
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 | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- "*.md" | |
- "LICENSE" | |
- "NOTICE" | |
pull_request: | |
paths-ignore: | |
- "*.md" | |
- "LICENSE" | |
- "NOTICE" | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-18.04 | |
steps: | |
- name: Setup Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.16 | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: yaml-lint | |
uses: ibiqlik/action-yamllint@v3 | |
- name: Run unit tests | |
run: make tests | |
- name: Upload code coverage | |
uses: codecov/codecov-action@v1 | |
with: | |
file: ./coverage.txt | |
- name: Run integration tests | |
run: make integration-tests | |
- name: Dry-run release snapshot | |
uses: goreleaser/goreleaser-action@v2 | |
with: | |
version: v0.148.0 | |
args: release --snapshot --skip-publish --rm-dist |