Update deps, part 1 #52
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Checks", | |
"on": ["push"], | |
"jobs": | |
{ | |
"formatting": | |
{ | |
"name": "Check formatting", | |
"runs-on": "ubuntu-latest", | |
"steps": | |
[ | |
{ "uses": "actions/checkout@v3", "with": { "submodules": true } }, | |
{ "uses": "Swatinem/rust-cache@v2" }, | |
{ | |
"name": "Set up toolchain", | |
"run": "rustup toolchain install nightly --component rustfmt", | |
}, | |
{ | |
"name": "Check formatting", | |
"run": "cargo +nightly fmt -- --check", | |
}, | |
], | |
}, | |
}, | |
} |