Bump github.com/onsi/ginkgo/v2 from 2.20.1 to 2.20.2 #229
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: execute validation runs | |
on: | |
- push | |
- pull_request | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- run: | | |
echo "$HOME/bin" >> "$GITHUB_PATH" | |
echo "$HOME/gopath/bin" >> "$GITHUB_PATH" | |
- name: Install Task | |
uses: arduino/setup-task@v1 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: '1.18' | |
- uses: actions/checkout@v2 | |
- name: install | |
run: | | |
task install-tools && \ | |
task install | |
- name: verify preconditions | |
run: task verify | |
- run: task test integration-test | |
- run: task lint | |
- run: task coveralls-analysis | |
env: | |
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: SonarCloud Scan | |
uses: sonarsource/sonarcloud-github-action@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |