-
-
Notifications
You must be signed in to change notification settings - Fork 429
26 lines (21 loc) · 620 Bytes
/
Copy pathrockspec.yml
File metadata and controls
26 lines (21 loc) · 620 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name: Rockspec Check
on:
pull_request:
types: [opened, edited, synchronize]
rockspec:
name: Rockspec
runs-on: ubuntu-latest
steps:
- name: Checkout 📋
uses: actions/checkout@v6
- name: Install Lua 🌙
uses: leso-kn/gh-actions-lua@v12
with:
luaVersion: "luajit-2.1.1774638290"
- name: Check rockspec 🪨
run: |
make rockspec
git diff --exit-code codecompanion.nvim-dev-1.rockspec || {
echo "::error::Rockspec is out of date. Run 'make rockspec' and commit the result."
exit 1
}