From 8955e998e94bfa55edf7d0ba2fee312f8d18d6f2 Mon Sep 17 00:00:00 2001 From: Diego Argueta Date: Sat, 14 Sep 2024 09:14:55 -0700 Subject: [PATCH] Start testing on Go 1.23 --- .github/workflows/ci.yml | 10 +++------- README.rst | 7 ++++--- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index be1e385..ed05951 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,21 +14,17 @@ jobs: - "1.20" - "1.21" - "1.22" + - "1.23" runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 - + - uses: actions/checkout@v4 - name: Set up Go ${{ matrix.go-version }} - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - cache: true - - name: Install dependencies run: go get . - - name: Build run: go build -v ./... - - name: Test run: make test diff --git a/README.rst b/README.rst index 2f783b7..85b94da 100644 --- a/README.rst +++ b/README.rst @@ -3,7 +3,7 @@ Disko: A Disk Image Editor |go-versions| |platforms| -.. |go-versions| image:: https://img.shields.io/badge/Go-1.20,%201.21,%201.22-blue.svg +.. |go-versions| image:: https://img.shields.io/badge/Go-1.20,%201.21,%201.22,%201.23-blue.svg .. |platforms| image:: https://img.shields.io/badge/platform-Linux%20%7C%20MacOS%20%7C%20Windows-lightgrey I've recently gotten into retro computing and found I need to create disk images. @@ -176,8 +176,9 @@ I make the following guarantees: in Go's documentation. * This is tested on: - * The latest three minor versions of Go, e.g. if 1.19.x is the most recent - release, I will test this on 1.17, 1.18, and 1.19. + * At least the latest three minor versions of Go, e.g. if 1.19.x is the most recent + release, I guarantee I'll test this on 1.17, 1.18, and 1.19; 1.16 and earlier are + best-effort. * The latest versions of Ubuntu, Windows, and MacOS that are supported by GitHub.