Skip to content

Create dependabot file for automatic updates for the creates and removed Cargo.lock and added some issue templates #625

Create dependabot file for automatic updates for the creates and removed Cargo.lock and added some issue templates

Create dependabot file for automatic updates for the creates and removed Cargo.lock and added some issue templates #625

Workflow file for this run

name: Build
on:
pull_request:
paths:
- '**.rs'
- '**/Cargo.toml'
- 'Cargo.lock'
push:
branches:
- main
paths:
- '**.rs'
- '**/Cargo.toml'
- 'Cargo.lock'
merge_group:
paths:
- '**.rs'
- '**/Cargo.toml'
- 'Cargo.lock'
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check
run: cargo check
- name: Clippy
run: cargo clippy --workspace --all-targets -- -D warnings