File tree 2 files changed +37
-0
lines changed
2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change
1
+ # To get started with Dependabot version updates, you'll need to specify which
2
+ # package ecosystems to update and where the package manifests are located.
3
+ # Please see the documentation for all configuration options:
4
+ # https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5
+
6
+ version : 2
7
+ updates :
8
+ - package-ecosystem : " github-actions"
9
+ directory : " /"
10
+ schedule :
11
+ interval : " weekly"
Original file line number Diff line number Diff line change
1
+ name : Test installer
2
+
3
+ on :
4
+ push :
5
+ paths :
6
+ - ' *.sh'
7
+ - ' lua/**'
8
+ - ' smax-scripts.service'
9
+ - ' .github/workflows/test.yml'
10
+
11
+ jobs :
12
+
13
+ test :
14
+ name : Test on Ubuntu
15
+
16
+ runs-on : ubuntu-latest
17
+ steps :
18
+ - name : install redis
19
+ run : sudo apt-get install redis
20
+
21
+ - name : Check out smax-server
22
+ uses : actions/checkout@v4
23
+
24
+ - name : Run installer
25
+ run : ./install.sh
26
+
You can’t perform that action at this time.
0 commit comments