File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed
Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 1+ [build ]
2+ rustflags = [
3+ " -Dunsafe_code" ,
4+ " -Dwarnings" ,
5+ " -Wclippy::all" ,
6+ " -Wclippy::pedantic" ,
7+ # Disable overly pedantic lints
8+ " -Aclippy::must_use_candidate" ,
9+ " -Aclippy::missing_errors_doc" ,
10+ " -Aclippy::missing_panics_doc" ,
11+ " -Aclippy::module_name_repetitions" ,
12+ " -Aclippy::uninlined_format_args" ,
13+ " -Aclippy::doc_markdown" ,
14+ " -Aclippy::default_trait_access" ,
15+ " -Aclippy::too_many_lines" ,
16+ # Enable specific nursery lints
17+ " -Wclippy::suboptimal_flops" ,
18+ " -Wclippy::imprecise_flops" ,
19+ ]
Original file line number Diff line number Diff line change 2424 # Publish documentation
2525 - name : Publish documentation
2626 uses : peaceiris/actions-gh-pages@v3
27- if : ${{ github.event_name == 'push' && github.ref == 'refs/heads/master ' }}
27+ if : ${{ github.event_name == 'push' && github.ref == 'refs/heads/main ' }}
2828 with :
2929 publish_branch : gh-pages
3030 github_token : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments