Skip to content

Bump toml from 0.7.5 to 0.7.6 #112

Bump toml from 0.7.5 to 0.7.6

Bump toml from 0.7.5 to 0.7.6 #112

Workflow file for this run

name: CI
on:
push:
branches: master
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
rustfmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Update Rust
run: rustup update stable
- name: Run rustfmt
run: cargo fmt --check
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Update Rust
run: rustup update stable
- name: Run clippy
run: cargo clippy -- --deny warnings
#tests:
# name: Tests
# runs-on: ubuntu-latest
#
# steps:
# - name: Checkout the repository
# uses: actions/checkout@v3
# - name: Update Rust
# run: rustup update stable
# - name: Run tests
# run: cargo test