Skip to content

refactor: naming

refactor: naming #10

Workflow file for this run

name: Lint api
on:
push:
branches-ignore: [master]
# Remove the line above to run when pushing to master
pull_request:
branches: [master]
workflow_dispatch:
jobs:
build:
name: Lint Code Base
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Lint api
uses: github/super-linter@v4
env:
#VALIDATE_ALL_CODEBASE: false
VALIDATE_OPENAPI: true
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}