Skip to content

Commit

Permalink
ci: drop go1.18 and go1.19
Browse files Browse the repository at this point in the history
Signed-off-by: Rui Chen <[email protected]>
  • Loading branch information
chenrui333 committed Jun 15, 2024
1 parent 2dbe7fb commit 9bfffe2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version: ["1.18", "1.19", "1.20", "1.21", "1.22"]
go-version: ["1.20", "1.21", "1.22"]

steps:
- uses: actions/checkout@v3
Expand All @@ -20,7 +21,7 @@ jobs:
run: go version

- name: Install Ginkgo
run: go install github.com/onsi/ginkgo/v2/[email protected]
run: go install github.com/onsi/ginkgo/v2/[email protected] # in sync with go.mod

- name: Run tests
run: ./scripts/run_tests.sh
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/petergtz/pegomock/v4

go 1.18
go 1.20

require (
github.com/alecthomas/kingpin/v2 v2.3.2
Expand Down

0 comments on commit 9bfffe2

Please sign in to comment.