Skip to content

Commit 2782089

Browse files
authored
add rustfmt step to ci (#90)
1 parent 5fd4401 commit 2782089

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/dev_ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
- uses: actions/checkout@v2
1818
- name: build_linux
1919
run: cargo build --all-features --verbose --release
20+
- name: rustfmt
21+
run: cargo fmt --all -- --check
2022
- name: Run tests
2123
run: cargo test --features plotly_ndarray,kaleido --release --verbose
2224
- name: Run basic charts

.github/workflows/release_ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
- uses: actions/checkout@v2
1818
- name: build_linux
1919
run: cargo build --all-features --verbose --release
20+
- name: rustfmt
21+
run: cargo fmt --all -- --check
2022
- name: Run tests
2123
run: cargo test --features plotly_ndarray,kaleido --release --verbose
2224
- name: Run basic charts

0 commit comments

Comments
 (0)