Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Complete build kicker v1.1 improvements entry #169

Complete build kicker v1.1 improvements entry

Complete build kicker v1.1 improvements entry #169

Workflow file for this run

name: Spell Check
# This GitHub workflow will be triggered when a change is pushed to the repository or when a team member activates it manually
on: [push, workflow_dispatch]
jobs:
spelling:
# The workflow is ran on a Ubuntu Linux virtual machine
runs-on: ubuntu-latest
steps:
# Checks the virtual machine out of the repository so the workflow can access it through commands
- name: Checkout
uses: actions/[email protected]
# Runs Typos spell check on the notebook source code
- name: Spell Check with Typos
uses: crate-ci/typos@master
with:
config: ./typos.toml
isolated: true