Skip to content

Bump yard from 0.9.28 to 0.9.35 #115

Bump yard from 0.9.28 to 0.9.35

Bump yard from 0.9.28 to 0.9.35 #115

Workflow file for this run

name: Lint
on: [pull_request]
jobs:
misspell:
name: Check Spelling
runs-on: ubuntu-latest
steps:
- name: Check Out
uses: actions/checkout@v2
- name: Install
run: wget -O - -q https://git.io/misspell | sh -s -- -b .
- name: Misspell
run: git ls-files --empty-directory | xargs ./misspell -error
merge-conflict:
name: Merge Conflict
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Check merge conflict
run: grep "^<<<<<<< HEAD" $(git ls-files | xargs) && exit 1 || true