Implement err_icon, folder_icon and file_icon #237
Workflow file for this run
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
on: | |
push: | |
branches: | |
- master | |
- develop | |
- rel/* | |
pull_request: | |
branches: | |
- master | |
- develop | |
- rel/* | |
name: Rust | |
env: | |
RUSTFLAGS: "-Dwarnings" | |
jobs: | |
lint-fmt-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cargo check | |
run: cargo check | |
- name: Rustfmt | |
run: cargo fmt --all -- --check | |
- name: Clippy | |
run: cargo clippy --all-targets --all-features | |
- name: Test | |
run: cargo test --all-features |