Skip to content

chore(deps): bump toml_edit from 0.22.27 to 0.23.4 #142

chore(deps): bump toml_edit from 0.22.27 to 0.23.4

chore(deps): bump toml_edit from 0.22.27 to 0.23.4 #142

Workflow file for this run

name: ci
on:
pull_request:
branches:
- '*'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: 'rustfmt, clippy'
- name: Lint
run: cargo fmt -- --check
- name: Clippy
run: cargo clippy -- -D warnings
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build
run: cargo build --verbose