Add CI and coverage information for Proteus #22
Workflow file for this run
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
| --- | |
| name: Lint | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| permissions: { } | |
| jobs: | |
| build: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: read | |
| # To report GitHub Actions status checks | |
| statuses: write | |
| steps: | |
| - 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 | |
| - name: Super-linter | |
| uses: super-linter/super-linter/slim@v6.7.0 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| # Currently, the following files do not meet linting requirements: | |
| # - External doxygen style files, | |
| # - MOOSE Doxygen header | |
| # - CodeCov upload script | |
| # - Proteus build scripts | |
| # so we currently explicitly exclude them from lint checks: | |
| FILTER_REGEX_EXCLUDE: ((^|/)doxygen-awesome|moose_doxy_header.html|doxygen.css|tabs.css|codecov.sh|install_ubuntu.sh|install_csd3_cclake.sh|slurm_submit.cclake|install_csd3_sapphire.sh|slurm_submit.sapphire) | |
| VALIDATE_ANSIBLE: false | |
| VALIDATE_CHECKOV: false | |
| VALIDATE_CPP: false | |
| VALIDATE_JSCPD: false | |
| VALIDATE_PYTHON_BLACK: false | |
| VALIDATE_PYTHON_FLAKE8: false | |
| VALIDATE_PYTHON_ISORT: false | |
| VALIDATE_PYTHON_MYPY: false | |
| VALIDATE_PYTHON_PYLINT: false | |
| VALIDATE_PYTHON_RUFF: false |