Skip to content

Commit

Permalink
actions & dependabot
Browse files Browse the repository at this point in the history
  • Loading branch information
robherley committed Dec 23, 2024
1 parent 9e64a02 commit 6aa6a92
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
version: 2
updates:
- package-ecosystem: cargo
directory: "/"
schedule:
interval: monthly
groups:
cargo:
patterns:
- "*"
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: monthly
groups:
actions:
patterns:
- "*"
19 changes: 19 additions & 0 deletions .github/workflows/cargo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: cargo

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

env:
CARGO_TERM_COLOR: always

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- run: cargo build --verbose
- run: cargo test --verbose

0 comments on commit 6aa6a92

Please sign in to comment.