mirror of
https://github.com/AdaCore/VSS.git
synced 2026-02-12 13:06:25 -08:00
15 lines
333 B
YAML
15 lines
333 B
YAML
on: [push, pull_request]
|
|
name: Spell checks
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Get VSS
|
|
uses: actions/checkout@v3
|
|
with:
|
|
path: ./vss
|
|
- name: Install aspell
|
|
run: sudo apt-get install -y aspell aspell-en
|
|
- name: Run aspell
|
|
run: make -C vss spellcheck
|