Skip to content

Update Go version in go.mod to 1.23.0. (#8069) #1324

Update Go version in go.mod to 1.23.0. (#8069)

Update Go version in go.mod to 1.23.0. (#8069) #1324

# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
name: Go Lib Unit Tests
env:
# alpine:3.13
ALPINE_VERSION: sha256:08d6ca16c60fe7490c03d10dc339d9fd8ea67c6466dea8d558526b1330a85930
on:
push:
paths:
- .github/actions/go-test/**
- .github/workflows/go.lib.unit.tests.yml
- go.mod
- go.sum
- GO_VERSION
- '**.go'
- '!**_test.go'
- 'lib/**_test.go'
- vendor/modules.txt
pull_request:
paths:
- .github/actions/go-test/**
- .github/workflows/go.lib.unit.tests.yml
- go.mod
- go.sum
- GO_VERSION
- '**.go'
- '!**_test.go'
- 'lib/**_test.go'
- vendor/modules.txt
types: [opened, reopened, ready_for_review, synchronize]
jobs:
go_lib_unit_tests:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Cache Alpine Docker image
uses: actions/cache@v2
with:
path: ${{ github.workspace }}/docker-images
key: docker-images/alpine@${{ env.ALPINE_VERSION }}.tar.gz
- name: Import cached Alpine Docker image
run: .github/actions/save-alpine-tar/entrypoint.sh load ${{ env.ALPINE_VERSION }}
- name: Run Go Lib unit tests
uses: ./.github/actions/go-test
with:
dir: ./lib/...
test_name: golib
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
files: golib-coverage.out
flags: golib_unit,unit_tests
- name: Save Alpine Docker image
run: .github/actions/save-alpine-tar/entrypoint.sh save ${{ env.ALPINE_VERSION }}