Special handling for icon=none only for oh source #9
Workflow file for this run
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: Run super-linter | |
on: | |
push: | |
branches-ignore: | |
- l10n_main | |
- dependabot/* | |
pull_request: | |
branches-ignore: | |
- l10n_main | |
permissions: | |
contents: read | |
packages: read | |
statuses: write | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Lint Code Base | |
uses: super-linter/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VALIDATE_KOTLIN: true |