acemod / sqflint

Docker sqflint

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker sqflint

Docker image with sqflint installed, to help speed up build times in CI pipelines.

This uses an alpine based with Python and installs sqflint.

Docker Build Statu

Table of Contents

Available tools

  • git
  • python3
  • make
  • zip
  • sqflint

Usage

In gitlab-ci:

unit-tests:
    stage: test
    image: acemod/sqflint:latest
    script:
      - sqflint --exit=e -d addons

circle-ci:

version: 2
jobs:
  build:
    docker:
      - image: acemod/sqflint
    steps:
      - checkout
      - run:
          name: linting
          command: |
            sqflint --exit=e -d addons

Contribute

PRs accepted. All issues should be reported in the Github issue tracker.

License

MIT © ACE Mod

About

Docker sqflint

License:MIT License


Languages

Language:Dockerfile 100.0%