update index #51
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
name: CI | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
env: | |
CARGO_TERM_COLOR: always | |
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse | |
jobs: | |
build: | |
name: Rust on ${{ matrix.os }} (${{ join(matrix.features, ',') }}) | |
if: github.event.pull_request.draft == false | |
needs: [fmt, clippy] | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Update toolchain & add llvm-tools | |
run: | | |
rustup update | |
rustup component add llvm-tools-preview | |
- name: Cache Rust dependencies | |
uses: Swatinem/rust-cache@v2 | |
- name: Fetch dependencies | |
run: cargo fetch --locked | |
- name: Build | |
run: cargo build -p tiron --frozen | |
- name: Build node | |
run: cargo build -p tiron-node --frozen | |
- name: Build lsp | |
run: cargo build -p tiron-lsp --frozen | |
- name: Run tests | |
run: cargo test --workspace | |
fmt: | |
name: Rustfmt | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Update toolchain & add rustfmt | |
run: | | |
rustup update | |
rustup component add rustfmt | |
- name: Run rustfmt | |
run: cargo fmt --all --check | |
clippy: | |
name: Clippy on ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Update toolchain & add clippy | |
run: | | |
rustup update | |
rustup component add clippy | |
- name: Cache Rust dependencies | |
uses: Swatinem/rust-cache@v2 | |
- name: Fetch dependencies | |
run: cargo fetch --locked | |
- name: Run clippy | |
run: cargo clippy -- -D warnings |