semantic-conventions/.circleci/config.yml

22 lines
339 B
YAML

version: 2
jobs:
misspell:
docker:
- image: circleci/golang:1.14
steps:
- checkout
- run:
name: Misspell Install
command: make install-misspell
- run:
name: Misspell check
command: make misspell
workflows:
version: 2
check-errors:
jobs:
- misspell