Docker image with sqflint installed, to help speed up build times in CI pipelines.
This uses an alpine based with Python and installs sqflint.
- git
- python3
- make
- zip
- sqflint
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
PRs accepted. All issues should be reported in the Github issue tracker.