chore: sync with microG unofficial installer #147
This file contains hidden or 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
| --- | |
| # SPDX-FileCopyrightText: NONE | |
| # SPDX-License-Identifier: CC0-1.0 | |
| name: "Code lint" | |
| permissions: {} | |
| on: | |
| push: | |
| paths: | |
| - "**" | |
| branches: | |
| - "**" | |
| tags: | |
| - "v*.*" | |
| pull_request: | |
| jobs: | |
| shellchecker: | |
| name: "ShellChecker" | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| permissions: | |
| contents: read # Needed to checkout the repository (only required for private repositories) | |
| steps: | |
| - name: "Checkout sources" | |
| uses: actions/checkout@v6 | |
| - name: "ShellChecker" | |
| uses: a5k-actions/shellchecker@v0 | |
| reuse: | |
| name: "REUSE compliance check" | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| permissions: | |
| contents: read # Needed to checkout the repository (only required for private repositories) | |
| steps: | |
| - name: "Checkout sources" | |
| uses: actions/checkout@v6 | |
| - name: "REUSE compliance check" | |
| uses: fsfe/reuse-action@v6 | |
| json-yaml-validate: | |
| name: "JSON and YAML" | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| permissions: | |
| contents: read # Needed to checkout the repository (only required for private repositories) | |
| steps: | |
| - name: "Checkout sources" | |
| uses: actions/checkout@v6 | |
| - name: "JSON and YAML - Validator" | |
| uses: GrantBirki/json-yaml-validate@v4 |