diff options
author | Valentin Popov <valentin@popov.link> | 2025-01-24 19:49:24 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2025-01-24 19:50:13 +0300 |
commit | 0dc37e96042d905cad6653615e2770db66164054 (patch) | |
tree | 7f154f81c41ff6a49ccb09c5d3864c1eeb6f0cc3 /.github | |
parent | 3d2e970225a6614305a6e9bdfc154cb53e427576 (diff) | |
download | fparkan-0dc37e96042d905cad6653615e2770db66164054.tar.xz fparkan-0dc37e96042d905cad6653615e2770db66164054.zip |
Outdated CI and Renovate configurations have been removed, and a new Dependabot configuration file for dependency management has been added.
Diffstat (limited to '.github')
-rw-r--r-- | .github/dependabot.yml | 14 | ||||
-rw-r--r-- | .github/workflows/.gitkeep | 0 | ||||
-rw-r--r-- | .github/workflows/test.yml (renamed from .github/workflows/ci.yml) | 4 |
3 files changed, 16 insertions, 2 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..cf918a7 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,14 @@ +version: 2 +updates: + - package-ecosystem: "cargo" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "devcontainers" + directory: "/" + schedule: + interval: "weekly" diff --git a/.github/workflows/.gitkeep b/.github/workflows/.gitkeep deleted file mode 100644 index e69de29..0000000 --- a/.github/workflows/.gitkeep +++ /dev/null diff --git a/.github/workflows/ci.yml b/.github/workflows/test.yml index 2f6a72d..01581b8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/test.yml @@ -1,4 +1,4 @@ -name: test suite +name: Test on: [push, pull_request] jobs: @@ -9,4 +9,4 @@ jobs: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable - run: cargo check --all - - run: cargo test --all-features
\ No newline at end of file + - run: cargo test --all-features |