mirror of
https://github.com/oxalica/nil.git
synced 2025-12-23 09:19:49 +00:00
Add GitHub CI
This commit is contained in:
parent
ae6981ea32
commit
a16525ec85
2 changed files with 76 additions and 0 deletions
74
.github/workflows/ci.yml
vendored
Normal file
74
.github/workflows/ci.yml
vendored
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
name: CI
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
|
||||
env:
|
||||
RUST_BACKTRACE: full
|
||||
|
||||
jobs:
|
||||
format:
|
||||
name: Format
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
- name: Install Rust
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
profile: minimal
|
||||
toolchain: nightly
|
||||
components: rustfmt
|
||||
- name: Check format
|
||||
run: cargo fmt --all -- --check
|
||||
|
||||
clippy:
|
||||
name: Clippy
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
- name: Install Rust
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
profile: minimal
|
||||
toolchain: stable
|
||||
components: clippy
|
||||
- name: Check clippy
|
||||
run: cargo clippy --all -- -D warnings
|
||||
|
||||
test:
|
||||
name: Test
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest]
|
||||
channel: [stable, beta]
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
- name: Install Rust
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
profile: minimal
|
||||
toolchain: ${{ matrix.channel }}
|
||||
- name: Build
|
||||
run: cargo build --all
|
||||
- name: Test
|
||||
run: cargo test --all -- --include-ignored
|
||||
|
||||
nix:
|
||||
name: Nix packaging
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest]
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
- name: Install Nix
|
||||
uses: cachix/install-nix-action@v17
|
||||
- name: Flake check
|
||||
run: nix flake check --no-update-lock-file --show-trace --verbose
|
||||
- name: Flake build
|
||||
run: nix build --no-update-lock-file --show-trace --verbose --print-build-logs
|
||||
|
|
@ -1,5 +1,7 @@
|
|||
nil: Language server for Nix Expression Language
|
||||
|
||||
[](https://github.com/oxalica/nil/actions/workflows/ci.yml)
|
||||
|
||||
🚧 *This project is under development, but be happy to try it out!*
|
||||
|
||||
Super fast incremental analysis! Scans `all-packages.nix` in less than 0.1s and completes with no delay!
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue