Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Install grammars
run: cargo run -- lang add rust typescript python go c cpp java ruby lua zig bash solidity elixir
run: cargo run -- lang add rust typescript python go c cpp java ruby lua zig bash solidity elixir swift dart
- run: cargo test

clippy:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:
os: macos-latest
- target: x86_64-pc-windows-msvc
os: windows-latest
- target: aarch64-pc-windows-msvc
os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ $InstallDir = "$env:LOCALAPPDATA\cx\bin"
$Arch = [System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture
switch ($Arch) {
'X64' { $Target = "x86_64-pc-windows-msvc" }
'Arm64' { $Target = "aarch64-pc-windows-msvc" }
default { Write-Error "Unsupported architecture: $Arch"; exit 1 }
}

Expand Down
Loading