Skip to content

Bump toml from 0.7.2 to 0.8.10 #29

Bump toml from 0.7.2 to 0.8.10

Bump toml from 0.7.2 to 0.8.10 #29

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
fmt:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: cargo fmt --all -- --config format_code_in_doc_comments=true --check
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.toml','**/Cargo.lock') }}
- name: Set profile
run: rustup set profile minimal && rustup component add clippy
- name: Build
run: cargo build
- name: Tests
run: cargo test
- name: Clippy
run: cargo clippy -- -D warnings