mirror of
https://github.com/AdaCore/markdown.git
synced 2026-02-12 13:11:15 -08:00
13 lines
292 B
YAML
13 lines
292 B
YAML
on: [push, pull_request]
|
|
name: Spell checks
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out
|
|
uses: actions/checkout@v3
|
|
- name: Install aspell
|
|
run: sudo apt-get install -y aspell aspell-en
|
|
- name: Run aspell
|
|
run: make spellcheck
|