You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2022/11/18 15:07:06 UTC

[iotdb-client-go] branch HTHou-patch-1 created (now e2e2bca)

This is an automated email from the ASF dual-hosted git repository.

haonan pushed a change to branch HTHou-patch-1
in repository https://gitbox.apache.org/repos/asf/iotdb-client-go.git


      at e2e2bca  Add go 1.19 ci

This branch includes the following new commits:

     new e2e2bca  Add go 1.19 ci

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[iotdb-client-go] 01/01: Add go 1.19 ci

Posted by ha...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

haonan pushed a commit to branch HTHou-patch-1
in repository https://gitbox.apache.org/repos/asf/iotdb-client-go.git

commit e2e2bcaa719ea6277334d62640e977de89f150fc
Author: Haonan <hh...@outlook.com>
AuthorDate: Fri Nov 18 23:07:02 2022 +0800

    Add go 1.19 ci
---
 .github/workflows/go.yml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
index f876414..feb7607 100644
--- a/.github/workflows/go.yml
+++ b/.github/workflows/go.yml
@@ -25,12 +25,13 @@ jobs:
     strategy:
       matrix:
         os: [macos-latest, ubuntu-latest, windows-latest]
+        go: ['1.13', '1.19']
     steps:
 
-    - name: Set up Go 1.x
+    - name: Set up Go ${{ matrix.go }}
       uses: actions/setup-go@v3
       with:
-        go-version: ^1.13
+        go-version: ${{ matrix.go }}
 
     - name: Check out code into the Go module directory
       uses: actions/checkout@v3