Switch E2E transport test to use binary example model. #217
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: Super Linter | |
on: # yamllint disable-line rule:truthy | |
workflow_dispatch: | |
push: | |
pull_request: | |
types: [assigned, opened, edited, synchronize, reopened] | |
pull_request_target: | |
types: [assigned, opened, edited, synchronize, reopened] | |
jobs: | |
build: | |
name: Lint Code Base | |
runs-on: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
fetch-depth: 0 | |
- name: Super-Linter | |
uses: github/super-linter/slim@v6 | |
env: | |
VALIDATE_ALL_CODEBASE: true | |
DEFAULT_BRANCH: main | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
FILTER_REGEX_EXCLUDE: (dse/mocks/examples/.*|dse/modelc/examples/doc/.*|doc/content/apis/modelc/examples/.*|doc/content/docs/examples/modelc/.*|doc/content/apis.*) | |
VALIDATE_CPP: true | |
VALIDATE_DOCKERFILE: true | |
# VALIDATE_MARKDOWN: true | |
VALIDATE_YAML: true |