Skip to content

I did a dumb with geometry #727

I did a dumb with geometry

I did a dumb with geometry #727

Workflow file for this run

---
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 }}