diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index 7f63f6e..7cfa151 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -24,7 +24,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v4 with: - go-version: ^1.21 + go-version: ^1.22 - name: Add cache to Go proxy run: | version=`git rev-parse HEAD` @@ -85,6 +85,22 @@ jobs: - name: Build run: | make test + build_go121: + name: Linux Debug build (Go 1.21) + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Setup Go + uses: actions/setup-go@v4 + with: + go-version: ~1.21 + continue-on-error: true + - name: Build + run: | + make test build__windows: name: Windows Debug build runs-on: windows-latest @@ -96,7 +112,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v4 with: - go-version: ^1.21 + go-version: ^1.22 continue-on-error: true - name: Build run: | @@ -112,7 +128,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v4 with: - go-version: ^1.21 + go-version: ^1.22 continue-on-error: true - name: Build run: | diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e35ba84..37f8431 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -24,7 +24,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v4 with: - go-version: ^1.21 + go-version: ^1.22 - name: Cache go module uses: actions/cache@v3 with: