Skip to content

Merge pull request #295 from mfvanek/dependabot/gradle/ch.qos.logback… #31

Merge pull request #295 from mfvanek/dependabot/gradle/ch.qos.logback…

Merge pull request #295 from mfvanek/dependabot/gradle/ch.qos.logback… #31

Workflow file for this run

name: Lint SQL Migrations
on:
push:
branches:
- master
pull_request:
jobs:
build:
name: Lint SQL Migrations
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: Run SQLFluff
uses: super-linter/super-linter/[email protected]
env:
VALIDATE_ALL_CODEBASE: false
VALIDATE_SQLFLUFF: true
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}