Skip to content

Commit 6d51246

Browse files
committed
Add github workflow for validation.
1 parent 41b766e commit 6d51246

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,7 @@ updates:
99
directory: "/"
1010
schedule:
1111
interval: "weekly"
12+
- package-ecosystem: "github-actions"
13+
directory: "/"
14+
schedule:
15+
interval: "weekly"

.github/workflows/validate.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Validate
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
validate:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v6
10+
with:
11+
submodules: true
12+
13+
- name: Validate Fish scripts
14+
run: |
15+
sudo apt update
16+
sudo apt install -y fish
17+
fish -n fish/**/*.fish
18+
19+
- name: Validate Dotbot configs
20+
run: |
21+
pip install dotbot
22+
dotbot -n -c dotbot-config.yaml
23+
dotbot -n -c dotbot-sync.yaml
24+
dotbot -n -c dotbot-update.yaml

0 commit comments

Comments
 (0)