mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-29 09:30:58 -05:00
48 lines
1,002 B
YAML
48 lines
1,002 B
YAML
|
---
|
||
|
####################
|
||
|
## Check spelling ##
|
||
|
####################
|
||
|
|
||
|
#
|
||
|
# Documentation:
|
||
|
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
|
||
|
#
|
||
|
|
||
|
name: Spell checking
|
||
|
#############################
|
||
|
# Start the job on all push #
|
||
|
#############################
|
||
|
on:
|
||
|
push:
|
||
|
branches-ignore:
|
||
|
- 'master'
|
||
|
|
||
|
###############
|
||
|
# Set the Job #
|
||
|
###############
|
||
|
jobs:
|
||
|
build:
|
||
|
# Name the Job
|
||
|
name: Spell checking
|
||
|
# Set the agent to run on
|
||
|
runs-on: ubuntu-latest
|
||
|
##################
|
||
|
# Load all steps #
|
||
|
##################
|
||
|
steps:
|
||
|
##########################
|
||
|
# Checkout the code base #
|
||
|
##########################
|
||
|
- name: Checkout Code
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
#############################
|
||
|
# Run check spelling action #
|
||
|
#############################
|
||
|
- name: Check spelling
|
||
|
uses: check-spelling/check-spelling@0.0.16-alpha
|
||
|
with:
|
||
|
bucket: .github/actions
|
||
|
project: spelling
|
||
|
|