feat: true custom mime
fetcher support - using user rules even during open or in watcher
#1599
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
name: Check | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
env: | |
SCCACHE_GHA_ENABLED: true | |
RUSTC_WRAPPER: sccache | |
jobs: | |
clippy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust toolchain | |
run: | | |
rustup toolchain install stable --profile minimal | |
rustup component add clippy | |
- name: Setup sccache | |
uses: mozilla-actions/[email protected] | |
- name: Clippy | |
run: cargo clippy --all | |
rustfmt: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Rust toolchain | |
run: | | |
rustup toolchain install nightly --profile minimal | |
rustup component add rustfmt --toolchain nightly | |
- name: Setup sccache | |
uses: mozilla-actions/[email protected] | |
- name: Rustfmt | |
run: cargo +nightly fmt --all -- --check | |
stylua: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: JohnnyMorganz/stylua-action@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
version: latest | |
args: --color always --check . |