| # 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: T3C Unit Tests |
| |
| env: |
| # alpine:3.13 |
| ALPINE_VERSION: sha256:08d6ca16c60fe7490c03d10dc339d9fd8ea67c6466dea8d558526b1330a85930 |
| |
| on: |
| push: |
| paths: |
| - .github/actions/go-test/** |
| - .github/workflows/cache-config.unit.tests.yml |
| - go.mod |
| - go.sum |
| - GO_VERSION |
| - '**.go' |
| - '!**_test.go' |
| - 'cache-config/**_test.go' |
| - vendor/modules.txt |
| pull_request: |
| paths: |
| - .github/actions/go-test/** |
| - .github/workflows/cache-config.unit.tests.yml |
| - go.mod |
| - go.sum |
| - GO_VERSION |
| - '**.go' |
| - '!**_test.go' |
| - 'cache-config/**_test.go' |
| - vendor/modules.txt |
| types: [opened, reopened, ready_for_review, synchronize] |
| |
| jobs: |
| t3c_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 T3C unit tests |
| uses: ./.github/actions/go-test |
| with: |
| dir: ./cache-config/... |
| test_name: cache-config |
| - name: Upload coverage to Codecov |
| uses: codecov/codecov-action@v3 |
| with: |
| files: cache-config-coverage.out |
| flags: t3c_unit,unit_tests |
| - name: Save Alpine Docker image |
| run: .github/actions/save-alpine-tar/entrypoint.sh save ${{ env.ALPINE_VERSION }} |