Skip to content

Commit

Permalink
lint in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
will-wow committed Feb 21, 2024
1 parent 22fd367 commit d90949a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
uses: actions/setup-go@v4
with:
go-version: "1.22"
cache-dependency-path: server/go.sum
cache-dependency-path: go.sum

# - name: lint
# run: task lint
- name: lint
run: task lint

- name: Run tests
run: go test -v ./...
run: task test:all
8 changes: 4 additions & 4 deletions .github/workflows/prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
uses: actions/setup-go@v4
with:
go-version: "1.22"
cache-dependency-path: server/go.sum
cache-dependency-path: go.sum

# - name: lint
# run: task lint
- name: lint
run: task lint

- name: Run tests
run: go test -v ./...
run: task test:all

0 comments on commit d90949a

Please sign in to comment.