Skip to content

Commit

Permalink
fix: fix typo in maven.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffTabiri authored Mar 27, 2024
1 parent 67bf114 commit 91c334f
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,29 +7,31 @@ on:
#branches: [ "develop" ]

jobs:
super-linter:
name: Lint the code base

Lint:
name: Lint
runs-on: ubuntu-latest

permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write

steps:
- name: Step 1 - Checkout the main branch from Github
uses: action/checkout@v4
- name: Checkout code
uses: actions/checkout@v4
with:
# super-linter needs the full git history to get the
# list of files that changed across commits
fetch-depth: 0

# Configures the version of super lint to be used.
- name: Super-linter
uses: super-linter/super-linter@v6.3.0
uses: super-linter/super-linter@v6.3.0 # x-release-please-version
env:
# To report GitHub Actions status checks
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}


#Job for building the application".
build:
Expand Down

0 comments on commit 91c334f

Please sign in to comment.