Skip to content

Commit

Permalink
Support strings and maps as setting values (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
CryZe authored Nov 5, 2023
1 parent c9de60f commit 7576ff0
Show file tree
Hide file tree
Showing 3 changed files with 216 additions and 176 deletions.
17 changes: 6 additions & 11 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ jobs:

steps:
- name: Checkout Commit
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install Rust
uses: hecrj/setup-rust-action@v1
uses: hecrj/setup-rust-action@v2
with:
rust-version: ${{ matrix.toolchain || 'stable' }}

Expand Down Expand Up @@ -152,29 +152,24 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Commit
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install Rust
uses: hecrj/setup-rust-action@v1
uses: hecrj/setup-rust-action@v2
with:
components: clippy

- name: Cache
uses: Swatinem/rust-cache@ce325b60658c1b38465c06cc965b79baf32c1e72
with:
key: ${{ matrix.target }}

- name: Run Clippy
run: cargo clippy --all-features

format:
runs-on: ubuntu-latest
steps:
- name: Checkout Commit
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install Rust
uses: hecrj/setup-rust-action@v1
uses: hecrj/setup-rust-action@v2
with:
components: rustfmt

Expand Down
Loading

0 comments on commit 7576ff0

Please sign in to comment.