Skip to content

feat!: switch to terra in DEMrelatedInput() #274

feat!: switch to terra in DEMrelatedInput()

feat!: switch to terra in DEMrelatedInput() #274

Workflow file for this run

###########################
###########################
## Linter GitHub Actions ##
###########################
###########################
name: Lint Code Base
#
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#
#################
# Start the job #
#################
on:
push:
branches: [main]
pull_request:
branches: [main]
###############
# Set the job #
###############
jobs:
build:
# Name the job
name: Lint Code Base
# Set the agent to run on
runs-on: ubuntu-latest
##################
# Load all steps #
##################
steps:
##########################
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v3
################################
# Run linter against code base #
################################
- name: Lint Code Base
uses: github/super-linter@v4
env:
VALIDATE_ALL_CODEBASE: true
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_R: true