Skip to content

Commit 2021d6d

Browse files
authored
Merge pull request #3 from fraya/master
Update infrastructure
2 parents 7f60211 + a74cf29 commit 2021d6d

File tree

3 files changed

+33
-3
lines changed

3 files changed

+33
-3
lines changed

.github/dependabot.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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"

.github/workflows/build-and-test.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,14 @@ jobs:
1515
build-and-test:
1616
runs-on: ubuntu-latest
1717
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
2023

2124
- name: Build time-test-suite
22-
run: ./dylan-compiler -build -jobs 3 time-test-suite
25+
run: dylan build time-test-suite
2326

2427
- name: Run time-test-suite
2528
run: _build/bin/time-test-suite

.gitignore

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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/

0 commit comments

Comments
 (0)