Skip to content

chore(deps): Bump toml from 0.8.4 to 0.8.5 #153

chore(deps): Bump toml from 0.8.4 to 0.8.5

chore(deps): Bump toml from 0.8.4 to 0.8.5 #153

Workflow file for this run

name: cargo
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: cargo build
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: cargo test
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: cargo fmt --check
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: cargo clippy