r.in.aster: add support for ASTER L1T data (#3258) #391
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: General linting | |
on: | |
push: | |
branches: | |
- main | |
- releasebranch_* | |
pull_request: | |
branches: | |
- main | |
- releasebranch_* | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
super-linter: | |
name: GitHub Super Linter | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Lint code base | |
uses: github/super-linter@v5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# Listed but commented out linters would be nice to have. | |
# (see https://github.com/github/super-linter#environment-variables) | |
# | |
# Python (supported using Pylint) and C/C++ (not supported) are | |
# handled separately due to the complexity of the settings. | |
# VALIDATE_BASH: true | |
# VALIDATE_CSS: true | |
# VALIDATE_DOCKER: true | |
VALIDATE_JAVASCRIPT_ES: true | |
# VALIDATE_JAVASCRIPT_STANDARD: true | |
VALIDATE_JSON: true | |
VALIDATE_MARKDOWN: true | |
VALIDATE_POWERSHELL: true | |
# VALIDATE_XML: true | |
VALIDATE_YAML: true |