From 4cf99d54a689ef9c26c04ea52e775f99e06b5f66 Mon Sep 17 00:00:00 2001 From: Guangming Luo Date: Mon, 15 Apr 2024 22:08:51 +0800 Subject: [PATCH] chore: fix tests.yml go version --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c8bc75a..3c53e3f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,8 +6,8 @@ jobs: unit-benchmark-test: strategy: matrix: - go: [ 1.18, 1.19, 1.20 ] - os: [ X64, ARM64 ] + go: [ "1.18", "1.19", "1.20", "1.21" ] + os: [ X64 ] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3