update to original as part of camera pose #721
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
--- | |
name: Lint New Commits | |
# Run linter on push | |
on: | |
push: | |
branches-ignore: [master, main] | |
# Remove the line above to run when pushing to master | |
pull_request: | |
branches: [master, main] | |
jobs: | |
build: | |
name: Lint New Commits | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Lint New Commits | |
# Use the slim linter to speed up build and download time | |
uses: github/super-linter/slim@v4 | |
env: | |
VALIDATE_ALL_CODEBASE: false | |
VALIDATE_BASH: false | |
VALIDATE_BASH_EXEC: false | |
VALIDATE_GROOVY: false | |
VALIDATE_JSON: false | |
VALIDATE_KOTLIN_ANDROID: false | |
DEFAULT_BRANCH: main | |
JAVA_FILE_NAME: sun_check.xml | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |