Skip to content

Commit

Permalink
Remove linting check
Browse files Browse the repository at this point in the history
  • Loading branch information
IanTapply22 committed Nov 12, 2023
1 parent 8f7dde4 commit 12bc04e
Showing 1 changed file with 1 addition and 19 deletions.
20 changes: 1 addition & 19 deletions .github/workflows/build-lint.yml → .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and Lint
name: Build

# Controls when the action will run. Triggers the workflow on push to all branches.
on: [ push ]
Expand Down Expand Up @@ -28,21 +28,3 @@ jobs:
# Runs a single command using the runners shell
- name: Compile and run tests on robot code
run: ./gradlew build

# Lints our code to find any format violations
lint:
# The type of runner that the job will run on
runs-on: ubuntu-latest

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 17
# Executes linting
# If this fails, run ./gradlew spotlessApply locally to fix formatting
- run: ./gradlew spotlessCheck

0 comments on commit 12bc04e

Please sign in to comment.