Merge branch 'topic/gcc-14.2,' into 'master' #476
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |