Skip to content

test: add unit test for GenerateScaledObjectName #10162

test: add unit test for GenerateScaledObjectName

test: add unit test for GenerateScaledObjectName #10162

# Copyright 2020 The Knative Authors.
#
# Licensed 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: Java Test
on:
push:
branches: [ 'main' ]
pull_request:
branches: [ 'main', 'release-*' ]
jobs:
test:
name: Java Unit Tests
strategy:
matrix:
java-version: [ 21 ]
platform: [ ubuntu-latest ]
runs-on: ${{ matrix.platform }}
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Setup java
uses: actions/setup-java@v2
with:
cache: 'maven'
java-version: ${{ matrix.java-version }}
distribution: 'temurin' # Eclipse Temurin, the new home for AdoptOpenJDK
- name: Check for .codecov.yaml
id: codecov-enabled
uses: andstor/file-existence-action@v1
with:
files: .codecov.yaml
- name: Java Test
run: ./hack/run.sh unit-tests-data-plane
- if: steps.codecov-enabled.outputs.files_exists == 'true'
name: Codecov
uses: codecov/codecov-action@v1
with:
file: ./data-plane/target/jacoco/jacoco.xml
flags: java-unittests