Skip to content

Commit

Permalink
feat(rule004): exclude words + experimental interactive fix mode
Browse files Browse the repository at this point in the history
  • Loading branch information
charislam committed Feb 5, 2025
1 parent 892f1f6 commit cde9acb
Show file tree
Hide file tree
Showing 31 changed files with 3,019 additions and 198 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
with:
targets: ${{ matrix.target }}

- run: cargo build --target=${{ matrix.target }} --release --locked
- run: cargo build --all-features --target=${{ matrix.target }} --release --locked

- run: mv target/${{ matrix.target }}/release/supa-mdx-lint supa-mdx-lint-Darwin-${{ matrix.arch }}
- uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 #v4.6.0
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
with:
targets: ${{ matrix.target }}

- run: cargo build --target=${{ matrix.target }} --release --locked
- run: cargo build --all-features --target=${{ matrix.target }} --release --locked

- run: mv target/${{ matrix.target }}/release/supa-mdx-lint.exe supa-mdx-lint-Windows-${{ matrix.arch }}.exe

Expand Down
12 changes: 9 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,10 @@ jobs:
run: cargo clippy
- name: rust tests
run: cargo test
- name: release build
- name: release build (default)
run: cargo build --release
- name: release build (all features)
run: cargo build --all-features --release

test-macos:
runs-on: macos-latest
Expand All @@ -54,8 +56,10 @@ jobs:
run: cargo clippy
- name: rust tests
run: cargo test
- name: release build
- name: release build (default)
run: cargo build --release
- name: release build (all features)
run: cargo build --all-features --release

test-windows:
runs-on: windows-latest
Expand All @@ -76,5 +80,7 @@ jobs:
run: cargo clippy
- name: rust tests
run: cargo test
- name: release build
- name: release build (default)
run: cargo build --release
- name: release build (all features)
run: cargo build --all-features --release
Loading

0 comments on commit cde9acb

Please sign in to comment.