Skip to content

Commit

Permalink
move linting back to go 1.21 instead of latest go 1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
jhump committed Apr 9, 2024
1 parent 69998f4 commit 84ba65e
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,21 @@ jobs:
working_directory: ~/repo
docker:
- image: cimg/go:1.21
steps: *simple_job_steps

build-1-22:
working_directory: ~/repo
docker:
- image: cimg/go:1.22
steps:
- checkout
- run:
name: Run tests and linters
command: |
make ci
# TODO: Need updates to some static analyzer tools to support 1.22. After those
# are updated, move the full linting from 1.21 to this latest release.
build-1-22:
working_directory: ~/repo
docker:
- image: cimg/go:1.22
steps: *simple_job_steps

workflows:
pr-build-test:
jobs:
Expand Down

0 comments on commit 84ba65e

Please sign in to comment.