fix: Better explanation for Get Credential QR code endpoint (#770) #2281
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: golangci-lint | |
on: [push] | |
permissions: | |
contents: read | |
jobs: | |
golangci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version-file: go.mod | |
cache: true | |
- name: Create .env-api, .env-issuer and .env-ui files | |
run: | | |
touch .env-api | |
touch .env-issuer | |
touch .env-ui | |
- name: Run golangci-lint | |
run: make lint |