test: oracle slash e2e #1251
Workflow file for this run
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
# This workflow executes several linters on changed files based on languages used in your code base whenever | |
# you push a code or open a pull request. | |
# | |
# You can adjust the behavior by modifying this file. | |
# For more information, see: | |
# https://github.com/github/super-linter | |
--- | |
name: Lint Code Base | |
permissions: | |
contents: read | |
on: | |
push: | |
branches: ["develop", "main", "master"] | |
pull_request: | |
branches: ["develop", "main", "master"] | |
jobs: | |
run-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
# Full git history is needed to get a proper list of changed files within `super-linter` | |
fetch-depth: 0 | |
- name: Lint Code Base | |
uses: super-linter/[email protected] # x-release-please-version | |
env: | |
LINTER_RULES_PATH: / | |
YAML_CONFIG_FILE: .yamllint | |
VALIDATE_ALL_CODEBASE: false | |
MARKDOWN_CONFIG_FILE: .markdownlint.yml | |
PROTOBUF_CONFIG_FILE: .protolint.yml | |
VALIDATE_NATURAL_LANGUAGE: false | |
VALIDATE_OPENAPI: false | |
VALIDATE_JSCPD: false | |
# The JSON files in the repo are generated (abis or swagger) | |
# or are linting files. So this can be safely disabled. | |
VALIDATE_JSON: false | |
# separate workflow | |
VALIDATE_GO: false | |
VALIDATE_GO_MODULES: false | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# if running with act, do not try to upload the results | |
MULTI_STATUS: ${{ !env.ACT }} | |
RUN_LOCAL: ${{ env.ACT }} |