We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41b766e commit 6d51246Copy full SHA for 6d51246
.github/dependabot.yml
@@ -9,3 +9,7 @@ updates:
9
directory: "/"
10
schedule:
11
interval: "weekly"
12
+ - package-ecosystem: "github-actions"
13
+ directory: "/"
14
+ schedule:
15
+ interval: "weekly"
.github/workflows/validate.yml
@@ -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:
+ - uses: actions/checkout@v6
+ with:
+ submodules: true
+ - name: Validate Fish scripts
+ run: |
+ sudo apt update
16
+ sudo apt install -y fish
17
+ fish -n fish/**/*.fish
18
19
+ - name: Validate Dotbot configs
20
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