Skip to content

Update about.md

Update about.md #35

Workflow file for this run

name: Pull Request
on: pull_request
jobs:
ci:
name: Continuous Integration
runs-on: ubuntu-latest
steps:
- name: ✅ Checkout Repo
uses: actions/checkout@v3
- name: 💎 Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1.2'
bundler-cache: true
- name: 🅰️ Check spelling
uses: streetsidesoftware/cspell-action@v2
with:
files: "**/*.{markdown,md,html}"
config: .vscode/cspell.json
incremental_files_only: false
- name: ▶️ Jekyll Build
run: bundle exec jekyll build