Skip to content

feat(vscode): add initial VS Code extension for CODEOWNERS LSP integr… #102

feat(vscode): add initial VS Code extension for CODEOWNERS LSP integr…

feat(vscode): add initial VS Code extension for CODEOWNERS LSP integr… #102

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
name: Build - ${{ matrix.os }} (${{ matrix.arch }})
runs-on: ${{ matrix.runner }}
strategy:
fail-fast: false
matrix:
include:
- os: linux
arch: x86_64
runner: ubuntu-latest
target: x86_64-unknown-linux-gnu
- os: linux
arch: aarch64
runner: ubuntu-24.04-arm
target: aarch64-unknown-linux-gnu
- os: windows
arch: x86_64
runner: windows-latest
target: x86_64-pc-windows-msvc
- os: windows
arch: aarch64
runner: windows-11-arm
target: aarch64-pc-windows-msvc
- os: macos
arch: x86_64
runner: macos-latest
target: x86_64-apple-darwin
- os: macos
arch: aarch64
runner: macos-latest
target: aarch64-apple-darwin
steps:
- name: Checkout Source
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- name: Cache cargo registry and build
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-${{ matrix.target }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-${{ matrix.target }}-cargo-
- name: Build
run: cargo build --release --target ${{ matrix.target }}