Implemented RestCall Detection improvements. New packages for JS parsing #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time | |
## For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven | |
# | |
## For each push and pull request, it builds the project, formats the code and runs units tests. | |
#name: CI | |
# | |
#on: | |
# push: | |
# branches: [ "main" ] | |
# pull_request: | |
# branches: [ "main" ] | |
# | |
#jobs: | |
# build: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: Set up JDK 17 | |
# uses: actions/setup-java@v3 | |
# with: | |
# java-version: '17' | |
# distribution: 'temurin' | |
# cache: maven | |
# - name: Build with Maven | |
# run: mvn -B package --file pom.xml | |
# | |
# formatting: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 # v2 minimum required | |
# - uses: axel-op/googlejavaformat-action@v3 | |
# with: | |
# args: "--skip-sorting-imports --replace" | |
# # Recommended if you use MacOS: | |
# github-token: ${{ secrets.GITHUB_TOKEN }} | |
# | |
# |