File tree 3 files changed +33
-3
lines changed
3 files changed +33
-3
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" # See documentation for possible values
9
+ directory : " /" # Location of package manifests
10
+ schedule :
11
+ interval : " weekly"
Original file line number Diff line number Diff line change @@ -15,11 +15,14 @@ jobs:
15
15
build-and-test :
16
16
runs-on : ubuntu-latest
17
17
steps :
18
- - uses : dylan-lang/install-opendylan@v1
19
- - uses : actions/checkout@v2
18
+ - uses : dylan-lang/install-opendylan@v3
19
+ - uses : actions/checkout@v4
20
+
21
+ - name : Download dependencies
22
+ run : dylan update
20
23
21
24
- name : Build time-test-suite
22
- run : ./ dylan-compiler - build -jobs 3 time-test-suite
25
+ run : dylan build time-test-suite
23
26
24
27
- name : Run time-test-suite
25
28
run : _build/bin/time-test-suite
Original file line number Diff line number Diff line change
1
+ # backup files
2
+ * ~
3
+ * .bak
4
+ .DS_Store
5
+
6
+ # compiler build directory
7
+ _build /
8
+
9
+ # dylan tool package cache
10
+ _packages /
11
+
12
+ # package registry folder
13
+ registry /
14
+
15
+ # documentation build directory
16
+ /documentation /build /
You can’t perform that action at this time.
0 commit comments