Commit 3e529c0 1 parent 70f3c91 commit 3e529c0 Copy full SHA for 3e529c0
File tree 3 files changed +15
-3
lines changed
3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 9
9
10
10
defaults :
11
11
run :
12
- shell : bash
13
12
working-directory : rustutils/
14
13
15
14
jobs :
16
15
test :
17
16
name : Rust tests
18
- runs-on : ubuntu-latest
17
+ runs-on : ${{ matrix.os }}
18
+ strategy :
19
+ fail-fast : true
20
+ matrix :
21
+ include :
22
+ - os : macos-latest # M-series CPU
23
+ - os : macos-13 # x64 CPU
24
+ - os : windows-latest
25
+ - os : ubuntu-latest
19
26
steps :
20
27
- uses : taiki-e/install-action@v2
21
28
with : { tool: just }
Original file line number Diff line number Diff line change @@ -52,3 +52,8 @@ cache.sqlite
52
52
cache.sqlite-journal
53
53
out.png
54
54
/test /android /app /build
55
+
56
+ # Rust
57
+ ** /target /
58
+ ** /* .rs.bk
59
+ ** /* .profraw
Original file line number Diff line number Diff line change @@ -265,7 +265,7 @@ class TileServerOptions final {
265
265
TileServerOptions& withDefaultStyles (std::vector<mbgl::util::DefaultStyle> styles);
266
266
267
267
/* *
268
- * @brief Sets the default style by name. The style name must exists in
268
+ * @brief Sets the default style by name. The style name must exist in
269
269
* defaultStyles collection
270
270
*
271
271
* @param defaultStyle The style name
You can’t perform that action at this time.
0 commit comments