Skip to content

Commit 88a3a27

Browse files
authored
Merge branch 'master' into fix/flr-no-reset-callback-clean
2 parents 1a7ffcb + efd091b commit 88a3a27

2 files changed

Lines changed: 13 additions & 1 deletion

File tree

.clangd

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# clangd configuration.
2+
#
3+
# Point clangd at the Meson-generated compile_commands.json so it works
4+
# without a symlink at the repo root. Run `make` (or `meson setup build`)
5+
# once and clangd will pick up per-file flags automatically.
6+
CompileFlags:
7+
CompilationDatabase: build

.github/workflows/pull_request.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,13 @@ jobs:
7575
make pre-push
7676
spelling:
7777
runs-on: ubuntu-latest
78-
container: vlajos/misspell-fixer
78+
container: debian:13
7979
steps:
8080
- uses: actions/checkout@v4
81+
- name: install misspell-fixer
82+
run: |
83+
apt-get update
84+
apt-get install -y git
85+
git clone https://github.com/vlajos/misspell-fixer.git /misspell-fixer
8186
- name: run misspell-fixer
8287
run: /misspell-fixer/misspell-fixer -sv .

0 commit comments

Comments
 (0)