Skip to content

Commit

Permalink
fix: Require at least go 1.18 (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashmckenzie committed Sep 1, 2024
1 parent 9df12cf commit 46e7bdd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Build and test
strategy:
matrix:
go-version: [~1.13, ^1]
go-version: [~1.18, ^1]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -32,4 +32,3 @@ jobs:

- name: Test
run: go test -race ./table

3 changes: 1 addition & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: "1.17.6"
go-version: "1.18.10"

- name: Check out code
uses: actions/checkout@v4
Expand All @@ -35,4 +35,3 @@ jobs:
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: goveralls -coverprofile=covprofile -service=github

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/evertras/bubble-table

go 1.17
go 1.18

require (
github.com/charmbracelet/bubbles v0.11.0
Expand Down

0 comments on commit 46e7bdd

Please sign in to comment.