Skip to content

chore: Configure Renovate #6

chore: Configure Renovate

chore: Configure Renovate #6

Workflow file for this run

name: CI
on:
push:
branches:
- main
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test for ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Formatting
run: cargo fmt --all --check
- name: Linting
run: cargo clippy --all-targets --all-features
- name: Check
run: cargo check
- name: Tests
run: cargo test