diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..6d5ee62d --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,15 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + groups: + artifacts: + patterns: + - "actions/*-artifact" + + - package-ecosystem: "cargo" + directory: "/" + schedule: + interval: "monthly" diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index a15fdb32..a566d920 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -20,8 +20,8 @@ jobs: - name: Build run: cargo build --verbose - name: Run tests - run: cargo test --verbose + run: cargo test --all-features --verbose - name: Check Formating - run: cargo fmt -- --check + run: cargo fmt --all -- --check - name: Run Clippy run: cargo clippy -- -D warnings