From b3e66bacdb30c13f4fdb56cfcab8297eb9ef2cbc Mon Sep 17 00:00:00 2001 From: Gaukas Wang Date: Sun, 30 Jul 2023 11:53:01 -0600 Subject: [PATCH] workflow: add more version build/test actions (#203) - Go 1.19 (to be dropped soon) - Go 1.20 - Go 1.21rc3 (beta) --- .github/workflows/{go.yml => go_1_19.yml} | 6 ++--- .github/workflows/go_1_20.yml | 28 +++++++++++++++++++++++ .github/workflows/go_1_21_rc3.yml | 28 +++++++++++++++++++++++ 3 files changed, 59 insertions(+), 3 deletions(-) rename .github/workflows/{go.yml => go_1_19.yml} (86%) create mode 100644 .github/workflows/go_1_20.yml create mode 100644 .github/workflows/go_1_21_rc3.yml diff --git a/.github/workflows/go.yml b/.github/workflows/go_1_19.yml similarity index 86% rename from .github/workflows/go.yml rename to .github/workflows/go_1_19.yml index d8e7f86..2d63739 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go_1_19.yml @@ -11,15 +11,15 @@ on: jobs: - build: + go_1.19: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Set up Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v4 with: - go-version: 1.19 + go-version: '1.19' - name: Build run: go build -v ./... diff --git a/.github/workflows/go_1_20.yml b/.github/workflows/go_1_20.yml new file mode 100644 index 0000000..61e1dc6 --- /dev/null +++ b/.github/workflows/go_1_20.yml @@ -0,0 +1,28 @@ +# This workflow will build a golang project +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go + +name: Go + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + + go_1.20: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: '1.20' + + - name: Build + run: go build -v ./... + + - name: Test + run: go test -v ./... diff --git a/.github/workflows/go_1_21_rc3.yml b/.github/workflows/go_1_21_rc3.yml new file mode 100644 index 0000000..aca3aeb --- /dev/null +++ b/.github/workflows/go_1_21_rc3.yml @@ -0,0 +1,28 @@ +# This workflow will build a golang project +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go + +name: Go + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + + go_1.21rc3: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: '1.21.0-rc.3' + + - name: Build + run: go build -v ./... + + - name: Test + run: go test -v ./...