File tree Expand file tree Collapse file tree 2 files changed +34
-1
lines changed Expand file tree Collapse file tree 2 files changed +34
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : GitHub actions CI
2
+
3
+ on : [push]
4
+
5
+ jobs :
6
+ build :
7
+ runs-on : ubuntu-latest
8
+ strategy :
9
+ fail-fast : false
10
+ matrix :
11
+ rust_version : [stable]
12
+ emacs_version :
13
+ - 24.5
14
+ - 25.1
15
+ - 25.2
16
+ - 25.3
17
+ - 26.1
18
+ - 26.2
19
+ - 26.3
20
+ - snapshot
21
+ env :
22
+ EMACS_VERSION : ${{ matrix.emacs_version }}
23
+ steps :
24
+ - uses : hecrj/setup-rust-action@v1
25
+ with :
26
+ rust-version : ${{ matrix.rust_version }}
27
+ - uses : purcell/setup-emacs@master
28
+ with :
29
+ version : ${{ matrix.emacs_version }}
30
+
31
+ - uses : actions/checkout@v1
32
+ - name : Run tests
33
+ run : ' ./run_rust_emacs_tests.sh'
Original file line number Diff line number Diff line change @@ -3140,7 +3140,7 @@ impl Two<'a> {
3140
3140
3141
3141
(when (executable-find rust-cargo-bin)
3142
3142
(ert-deftest rust-test-project-located ()
3143
- (lexical-let* ((test-dir (expand-file-name " test-project" default-directory))
3143
+ (lexical-let* ((test-dir (expand-file-name " test-project/ " default-directory))
3144
3144
(manifest-file (expand-file-name " Cargo.toml" test-dir)))
3145
3145
(let ((default-directory test-dir))
3146
3146
(should (equal (expand-file-name (rust-buffer-project)) manifest-file))))))
You can’t perform that action at this time.
0 commit comments