chore(deps): bump cachix/install-nix-action from V27 to 30 #630
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: Lint Code Base | |
defaults: | |
run: | |
# To load bashrc | |
shell: bash -ieo pipefail {0} | |
on: | |
pull_request: | |
branches: [master, dev] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Lint Code Base | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
pip install . | |
pip install deepdiff numpy | |
mkdir -p .github/linters | |
cp pyproject.toml .github/linters | |
- name: Lint everything else | |
uses: github/super-linter/[email protected] | |
if: always() | |
env: | |
# run linter on everything to catch preexisting problems | |
VALIDATE_ALL_CODEBASE: true | |
DEFAULT_BRANCH: master | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# Until we upgrade the super linter for actionlintÒ | |
VALIDATE_GITHUB_ACTIONS: false | |
# Always false | |
VALIDATE_PYTHON: false | |
VALIDATE_PYTHON_PYLINT: false | |
VALIDATE_PYTHON_BLACK: false | |
VALIDATE_PYTHON_ISORT: false | |
# Always false | |
VALIDATE_JSON: false | |
VALIDATE_JAVASCRIPT_STANDARD: false | |
VALIDATE_PYTHON_FLAKE8: false | |
VALIDATE_DOCKERFILE: false | |
VALIDATE_DOCKERFILE_HADOLINT: false | |
VALIDATE_EDITORCONFIG: false | |
VALIDATE_JSCPD: false | |
VALIDATE_PYTHON_MYPY: false | |
SHELLCHECK_OPTS: "-e SC1090 -e SC2181 -e SC2103" |