Skip to content

Commit 957aaa1

Browse files
committed
weekly cargo build
1 parent 435067b commit 957aaa1

1 file changed

Lines changed: 16 additions & 11 deletions

File tree

.github/workflows/test_rust.yml

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
name: tests_rust
2-
on: [push, pull_request, workflow_dispatch]
2+
on:
3+
push:
4+
pull_request:
5+
workflow_dispatch:
6+
schedule:
7+
- cron: "0 0 * * 0"
38

49
jobs:
5-
cargo_test:
6-
name: run cargo test
7-
runs-on: ubuntu-latest
8-
steps:
9-
- uses: actions/checkout@v4
10-
- run: rustup update stable && rustup default stable
11-
- name: cargo build
12-
run: cargo build --verbose
13-
- name: cargo test
14-
run: cargo test --verbose
10+
cargo_test:
11+
name: run cargo test
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v7
15+
- run: rustup update stable && rustup default stable
16+
- name: cargo build
17+
run: cargo build --verbose
18+
- name: cargo test
19+
run: cargo test --verbose

0 commit comments

Comments
 (0)