Skip to content
This repository has been archived by the owner on Aug 20, 2024. It is now read-only.

Add renovate.json

Add renovate.json #46

Workflow file for this run

name: Rust
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 10
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Linting
run: cargo clippy
- name: Formatting
run: cargo fmt -- --check