File tree Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change 3
3
- package-ecosystem : cargo
4
4
directory : " /"
5
5
schedule :
6
- interval : daily
6
+ interval : weekly
7
7
time : " 08:00"
8
8
open-pull-requests-limit : 10
Original file line number Diff line number Diff line change
1
+ name : tests
2
+ # Originally from: https://doc.rust-lang.org/cargo/guide/continuous-integration.html#github-actions
3
+
4
+ on :
5
+ push :
6
+ branches : ["main"]
7
+ pull_request :
8
+
9
+ env :
10
+ CARGO_TERM_COLOR : always
11
+
12
+ jobs :
13
+ build_and_test :
14
+ name : WASM Game of Life - latest
15
+ runs-on : ubuntu-latest
16
+ strategy :
17
+ matrix :
18
+ toolchain :
19
+ - stable
20
+ # - beta
21
+ # - nightly
22
+ steps :
23
+ - uses : actions/checkout@v4
24
+ - run : rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
25
+ - uses : Swatinem/rust-cache@v2
26
+ - run : cargo install wasm-pack
27
+ - run : wasm-pack test --firefox --headless
You can’t perform that action at this time.
0 commit comments