Skip to content

Remove tempfile dependency #619

Remove tempfile dependency

Remove tempfile dependency #619

Workflow file for this run

on: [push, pull_request]
name: format
jobs:
build:
name: causal-hub
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache
uses: actions/cache@v3
with:
path: target
key: Linux-rust-nightly-${{ hashFiles('Cargo.toml') }}-${{ hashFiles('.github/workflows/format.yml') }}
- name: Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
components: rustfmt
- name: Format
run: cargo +nightly fmt --all --check -v