Bump github.com/vektra/mockery/v2 from 2.32.3 to 2.32.4 #918
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
on: [ push, pull_request ] | |
name: Test | |
jobs: | |
test: | |
strategy: | |
matrix: | |
go-version: [1.20.x] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v4.1.0 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Generate env file | |
run: 'echo "$ENV_FILE" > cmd/env' | |
shell: bash | |
env: | |
ENV_FILE: ${{secrets.ENV}} | |
- name: Generate env.test file | |
run: 'echo "$ENV_TEST_FILE" > cmd/env.test' | |
shell: bash | |
env: | |
ENV_TEST_FILE: ${{secrets.ENV_TEST}} | |
- name: Install Task | |
uses: arduino/setup-task@v1.0.3 | |
with: | |
version: 3.20.0 | |
- name: Test | |
run: task test | |
- name: Upload report to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
verbose: true | |
files: coverage.txt | |
golangci: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v4.1.0 | |
with: | |
go-version: 1.20.0 | |
- uses: actions/checkout@v3 | |
- name: Generate env file | |
run: 'echo "$ENV_FILE" > cmd/env' | |
shell: bash | |
env: | |
ENV_FILE: ${{secrets.ENV}} | |
- name: Generate env.test file | |
run: 'echo "$ENV_TEST_FILE" > cmd/env.test' | |
shell: bash | |
env: | |
ENV_TEST_FILE: ${{secrets.ENV_TEST}} | |
- name: Install Task | |
uses: arduino/setup-task@v1.0.3 | |
with: | |
version: 3.20.0 | |
- name: Generate code | |
run: task generate | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3.6.0 | |
with: | |
version: v1.51.0 | |
skip-pkg-cache: true | |
skip-go-installation: true | |
skip-build-cache: true |