Skip to content

Commit 95cd642

Browse files
committed
Merge branch qv2 into qv2-merge
1 parent f59b224 commit 95cd642

File tree

93 files changed

+2097
-493
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+2097
-493
lines changed

.github/workflows/rust.yml

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -90,46 +90,46 @@ jobs:
9090
- name: Run tests
9191
run: cargo test --locked --workspace --lib --bins --test '*' --exclude fig_desktop-fuzz
9292

93-
cargo-clippy-windows:
94-
name: Clippy Windows
95-
runs-on: windows-latest
96-
timeout-minutes: 60
97-
steps:
98-
- uses: actions/checkout@v4
99-
- uses: dtolnay/[email protected]
100-
id: toolchain
101-
with:
102-
components: clippy
103-
- uses: actions/cache@v4
104-
with:
105-
path: |
106-
~/.cargo/registry/index/
107-
~/.cargo/registry/cache/
108-
~/.cargo/git/db/
109-
target/
110-
key: cargo-clippy-windows-${{ hashFiles('**/Cargo.lock') }}-${{ steps.toolchain.outputs.cachekey }}
111-
- run: cargo clippy --locked -p q_cli --color always -- -D warnings
93+
# cargo-clippy-windows:
94+
# name: Clippy Windows
95+
# runs-on: windows-latest
96+
# timeout-minutes: 60
97+
# steps:
98+
# - uses: actions/checkout@v4
99+
# - uses: dtolnay/[email protected]
100+
# id: toolchain
101+
# with:
102+
# components: clippy
103+
# - uses: actions/cache@v4
104+
# with:
105+
# path: |
106+
# ~/.cargo/registry/index/
107+
# ~/.cargo/registry/cache/
108+
# ~/.cargo/git/db/
109+
# target/
110+
# key: cargo-clippy-windows-${{ hashFiles('**/Cargo.lock') }}-${{ steps.toolchain.outputs.cachekey }}
111+
# - run: cargo clippy --locked -p q_cli --color always -- -D warnings
112112

113-
cargo-test-windows:
114-
name: Test Windows
115-
runs-on: windows-latest
116-
timeout-minutes: 60
117-
steps:
118-
- uses: actions/checkout@v4
119-
- uses: dtolnay/rust-toolchain@nightly
120-
id: toolchain
121-
with:
122-
components: llvm-tools-preview
123-
- uses: actions/cache@v4
124-
with:
125-
path: |
126-
~/.cargo/registry/index/
127-
~/.cargo/registry/cache/
128-
~/.cargo/git/db/
129-
target/
130-
key: cargo-test-windows-${{ hashFiles('**/Cargo.lock') }}-${{ steps.toolchain.outputs.cachekey }}
131-
- name: Run tests
132-
run: cargo test --locked -p q_cli
113+
# cargo-test-windows:
114+
# name: Test Windows
115+
# runs-on: windows-latest
116+
# timeout-minutes: 60
117+
# steps:
118+
# - uses: actions/checkout@v4
119+
# - uses: dtolnay/rust-toolchain@nightly
120+
# id: toolchain
121+
# with:
122+
# components: llvm-tools-preview
123+
# - uses: actions/cache@v4
124+
# with:
125+
# path: |
126+
# ~/.cargo/registry/index/
127+
# ~/.cargo/registry/cache/
128+
# ~/.cargo/git/db/
129+
# target/
130+
# key: cargo-test-windows-${{ hashFiles('**/Cargo.lock') }}-${{ steps.toolchain.outputs.cachekey }}
131+
# - name: Run tests
132+
# run: cargo test --locked -p q_cli
133133

134134
cargo-fmt:
135135
name: Fmt

.typos.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
[files]
2+
extend-exclude = [
3+
"*.png",
4+
"*.jpg",
5+
"*.jpeg",
6+
"*.gif",
7+
"*.ico",
8+
"*.icns",
9+
"*.svg",
10+
"*.woff",
11+
"*.woff2",
12+
"*.ttf",
13+
"*.eot",
14+
"crates/fig_desktop/icons/**"
15+
]
216

317
[default.extend-words]
418
mmaped = "mmaped"

0 commit comments

Comments
 (0)