Skip to content

Commit

Permalink
try making lint action look more like test action
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyler-Lentz committed Jan 26, 2024
1 parent 3152659 commit e53db2e
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,17 @@ jobs:
name: Lint Backend
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- uses: actions/checkout@v3

- name: Checkout Repo
uses: actions/checkout@v2
with:
submodules: true
token: ${{ secrets.SSH_TOKEN }}

- name: Install dependencies
run: make install-dependencies

Expand Down

0 comments on commit e53db2e

Please sign in to comment.