File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Please see the documentation for all configuration options:
2+ # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
3+
4+ # Origin: https://github.com/rust-lang/rust-semverver/blob/master/.github/dependabot.yml
5+
6+ version : 2
7+ updates :
8+ - package-ecosystem : " cargo"
9+ directory : " /"
10+ schedule :
11+ interval : " weekly"
12+ ignore :
13+ # These are peer deps of Cargo and should not be automatically bumped
14+ - dependency-name : " semver"
15+ - dependency-name : " crates-io"
16+ rebase-strategy : " disabled"
Original file line number Diff line number Diff line change 1+ name : Rust CI
2+
3+ on :
4+ push :
5+ branches :
6+ - ' *'
7+ - ' !main'
8+ paths-ignore :
9+ - ' **/*.md'
10+ pull_request :
11+ branches : [ "*" ]
12+
13+ env :
14+ CARGO_TERM_COLOR : always
15+
16+ jobs :
17+ build :
18+
19+ runs-on : ubuntu-latest
20+
21+ steps :
22+ - uses : actions/checkout@v4
23+ - name : Build
24+ run : cargo build --verbose
25+ - name : Run tests
26+ run : cargo test --verbose
You can’t perform that action at this time.
0 commit comments