Skip to content

Add Dependabot configuration for automated dependency updates #7

Add Dependabot configuration for automated dependency updates

Add Dependabot configuration for automated dependency updates #7

Workflow file for this run

name: Rust
permissions:
contents: read
pull-requests: write
on:
push:
branches: [ "main", "develop" ]
pull_request:
branches: [ "main", "develop" ]
release:
types: [ published ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy
override: true
- name: Check formatting
run: cargo fmt -- --check
- name: Run clippy
run: cargo clippy -- -D warnings
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose