Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

qq290584697 pushed code #492

qq290584697 pushed code

qq290584697 pushed code #492

name: SOFAServerless Runtime Unit Test
run-name: ${{ github.actor }} pushed code
on:
push:
branches:
- master
paths:
- 'sofa-serverless-runtime/**'
pull_request:
branches:
- master
paths:
- 'sofa-serverless-runtime/**'
# enable manually running the workflow
workflow_dispatch:
env:
WORK_DIR: sofa-serverless-runtime
defaults:
run:
working-directory: sofa-serverless-runtime
jobs:
unit-test-for-jdk8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Java JDK
uses: actions/setup-java@v3
with:
distribution: adopt
java-version: 8
cache: maven
- name: Test
run: mvn clean install -DskipTests -Dmaven.javadoc.skip=true -B -U
&& sh ./check_format.sh
&& mvn test
- name: upload coverage reports to Codecov with github action
uses: codecov/codecov-action@v3