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+ # To get started with Dependabot version updates, you'll need to specify which
2+ # package ecosystems to update and where the package manifests are located.
3+ # Please see the documentation for all configuration options:
4+ # https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+ version : 2
7+ updates :
8+ - package-ecosystem : " cargo" # See documentation for possible values
9+ directory : " /" # Location of package manifests
10+ schedule :
11+ interval : " weekly"
Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ pull_request :
6+
7+ env :
8+ CARGO_TERM_COLOR : always
9+
10+ jobs :
11+ test :
12+ name : Test
13+ runs-on : ubuntu-latest
14+ permissions :
15+ contents : read
16+ strategy :
17+ matrix :
18+ toolchain :
19+ - stable
20+ - nightly
21+ steps :
22+ - uses : actions/checkout@v4
23+ - run : rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
24+ - run : cargo build --verbose
25+ - run : cargo test --verbose
26+ - run : cargo test --verbose --all-features
27+
28+ lint :
29+ name : Lint
30+ runs-on : ubuntu-latest
31+ permissions :
32+ contents : read
33+ steps :
34+ - uses : actions/checkout@v4
35+ - run : rustup update stable && rustup default stable
36+ - run : rustup component add clippy
37+ - run : cargo clippy --verbose --all-features
You can’t perform that action at this time.
0 commit comments