feat(reload): add support for hot reloading of config #458
This file contains hidden or 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: Lint | |
| on: | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| clippy: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| checks: write | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install Rust | |
| uses: actions-rust-lang/setup-rust-toolchain@v1.15.2 | |
| with: | |
| components: clippy | |
| - name: Install just & cargo-hack | |
| uses: taiki-e/install-action@v2.67.18 | |
| with: | |
| tool: just,cargo-hack | |
| - name: Clippy | |
| run: just clippy | |
| rustfmt: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install Rust (nightly) | |
| uses: actions-rust-lang/setup-rust-toolchain@v1.15.2 | |
| with: | |
| toolchain: nightly | |
| components: rustfmt | |
| - run: cargo fmt -- --check | |
| docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install Rust | |
| uses: actions-rust-lang/setup-rust-toolchain@v1.15.2 | |
| with: | |
| components: rust-docs | |
| - name: Check for broken intra-doc links | |
| env: | |
| RUSTDOCFLAGS: -D warnings | |
| run: cargo doc --workspace --no-deps --all-features | |
| public-api-diff: | |
| if: false | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| ref: ${{ github.base_ref }} | |
| - uses: actions/checkout@v5 | |
| - name: Install Rust (${{ vars.RUST_VERSION_API_DIFF }}) | |
| uses: actions-rust-lang/setup-rust-toolchain@v1.15.2 | |
| with: | |
| toolchain: ${{ vars.RUST_VERSION_API_DIFF }} | |
| - name: Install cargo-public-api | |
| uses: taiki-e/cache-cargo-install-action@v2.3.1 | |
| with: | |
| tool: cargo-public-api | |
| - name: Generate API diff | |
| run: | | |
| cargo public-api --manifest-path ./confik/Cargo.toml diff ${{ github.event.pull_request.base.sha }}..${{ github.sha }} |