semantic-conventions/.circleci/config.yml

31 lines
527 B
YAML

version: 2
jobs:
misspell:
docker:
- image: circleci/golang:1.12
steps:
- checkout
- run:
name: Misspell check
command: make precommit
markdownlint:
docker:
- image: circleci/ruby:latest
steps:
- checkout
- run:
name: Install markdownlint
command: gem install mdl
- run:
name: Check markdownlint
command: mdl -c .mdlrc .
workflows:
version: 2
build:
jobs:
- misspell
- markdownlint