refactor: jwt_secret_key file name changed and also added a ruby scri… #185
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: Linter check | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
linting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '1.22.4' | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install devtools | |
run: make devtools | |
- name: Run linter | |
run: make linter |