2020-06-01 10:50:43 +02:00
|
|
|
name: Build
|
2021-05-10 09:15:28 +02:00
|
|
|
on:
|
|
|
|
pull_request:
|
2021-06-05 13:32:10 +02:00
|
|
|
push:
|
2021-05-10 09:15:28 +02:00
|
|
|
branches:
|
|
|
|
- master
|
2021-06-05 13:32:10 +02:00
|
|
|
schedule:
|
|
|
|
- cron: '00 01 * * *'
|
2020-06-01 10:50:43 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
check:
|
|
|
|
name: Check
|
|
|
|
runs-on: ubuntu-latest
|
2022-05-22 04:27:08 +02:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
rust: [stable, msrv]
|
2020-06-01 10:50:43 +02:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2022-03-08 01:12:37 +01:00
|
|
|
uses: actions/checkout@v3
|
2020-06-01 10:50:43 +02:00
|
|
|
|
2022-05-22 04:27:08 +02:00
|
|
|
- name: Use MSRV rust toolchain
|
|
|
|
if: matrix.rust == 'msrv'
|
|
|
|
run: cp .github/workflows/msrv-rust-toolchain.toml rust-toolchain.toml
|
|
|
|
|
2020-06-01 10:50:43 +02:00
|
|
|
- name: Install stable toolchain
|
2022-05-22 03:46:20 +02:00
|
|
|
uses: helix-editor/rust-toolchain@v1
|
2020-06-01 10:50:43 +02:00
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
override: true
|
|
|
|
|
2022-11-22 10:15:36 +01:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2020-06-02 03:42:41 +02:00
|
|
|
|
2020-06-01 10:50:43 +02:00
|
|
|
- name: Run cargo check
|
2022-11-22 10:05:29 +01:00
|
|
|
run: cargo check
|
2020-06-01 10:50:43 +02:00
|
|
|
|
|
|
|
test:
|
|
|
|
name: Test Suite
|
2021-06-05 13:32:10 +02:00
|
|
|
runs-on: ${{ matrix.os }}
|
2022-04-27 06:42:18 +02:00
|
|
|
env:
|
|
|
|
RUST_BACKTRACE: 1
|
|
|
|
HELIX_LOG_LEVEL: info
|
2020-06-01 10:50:43 +02:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2022-03-08 01:12:37 +01:00
|
|
|
uses: actions/checkout@v3
|
2020-06-01 10:50:43 +02:00
|
|
|
|
|
|
|
- name: Install stable toolchain
|
2022-12-13 07:07:20 +01:00
|
|
|
uses: dtolnay/rust-toolchain@1.61
|
2020-06-01 10:50:43 +02:00
|
|
|
|
2022-11-22 10:15:36 +01:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2020-06-02 03:42:41 +02:00
|
|
|
|
2022-02-15 00:36:02 +01:00
|
|
|
- name: Cache test tree-sitter grammar
|
2022-03-22 03:14:14 +01:00
|
|
|
uses: actions/cache@v3
|
2022-02-15 00:36:02 +01:00
|
|
|
with:
|
|
|
|
path: runtime/grammars
|
2022-05-22 04:27:08 +02:00
|
|
|
key: ${{ runner.os }}-stable-v${{ env.CACHE_VERSION }}-tree-sitter-grammars-${{ hashFiles('languages.toml') }}
|
|
|
|
restore-keys: ${{ runner.os }}-stable-v${{ env.CACHE_VERSION }}-tree-sitter-grammars-
|
2022-02-15 00:36:02 +01:00
|
|
|
|
2020-06-01 10:50:43 +02:00
|
|
|
- name: Run cargo test
|
2022-11-22 10:05:29 +01:00
|
|
|
run: cargo test --workspace
|
2022-06-02 06:13:08 +02:00
|
|
|
|
|
|
|
- name: Run cargo integration-test
|
2022-11-22 10:05:29 +01:00
|
|
|
run: cargo integration-test
|
2020-06-01 10:50:43 +02:00
|
|
|
|
2021-06-05 13:32:10 +02:00
|
|
|
strategy:
|
2021-06-06 11:22:18 +02:00
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
2021-06-05 13:32:10 +02:00
|
|
|
|
2020-06-01 10:50:43 +02:00
|
|
|
lints:
|
|
|
|
name: Lints
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2022-03-08 01:12:37 +01:00
|
|
|
uses: actions/checkout@v3
|
2020-06-01 10:50:43 +02:00
|
|
|
|
|
|
|
- name: Install stable toolchain
|
2022-12-13 07:07:20 +01:00
|
|
|
uses: dtolnay/rust-toolchain@1.61
|
2020-06-01 10:50:43 +02:00
|
|
|
with:
|
|
|
|
components: rustfmt, clippy
|
|
|
|
|
2022-11-22 10:15:36 +01:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2020-06-02 03:42:41 +02:00
|
|
|
|
2020-06-01 10:50:43 +02:00
|
|
|
- name: Run cargo fmt
|
2022-11-22 10:30:31 +01:00
|
|
|
run: cargo fmt --all --check
|
2020-06-01 10:50:43 +02:00
|
|
|
|
|
|
|
- name: Run cargo clippy
|
2022-11-22 10:05:29 +01:00
|
|
|
run: cargo clippy --workspace --all-targets -- -D warnings
|
2021-11-29 15:54:24 +01:00
|
|
|
|
2022-09-03 16:58:16 +02:00
|
|
|
- name: Run cargo doc
|
2022-11-22 10:05:29 +01:00
|
|
|
run: cargo doc --no-deps --workspace --document-private-items
|
2022-09-03 16:58:16 +02:00
|
|
|
env:
|
|
|
|
RUSTDOCFLAGS: -D warnings
|
|
|
|
|
2021-11-29 15:54:24 +01:00
|
|
|
docs:
|
|
|
|
name: Docs
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2022-03-08 01:12:37 +01:00
|
|
|
uses: actions/checkout@v3
|
2021-11-29 15:54:24 +01:00
|
|
|
|
|
|
|
- name: Install stable toolchain
|
2022-12-13 07:14:40 +01:00
|
|
|
uses: dtolnay/rust-toolchain@1.61
|
2021-11-29 15:54:24 +01:00
|
|
|
|
2022-11-22 10:15:36 +01:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2021-11-29 15:54:24 +01:00
|
|
|
|
2022-12-13 07:14:40 +01:00
|
|
|
- name: Validate queries
|
|
|
|
run: cargo xtask query-check
|
|
|
|
|
2021-11-29 15:54:24 +01:00
|
|
|
- name: Generate docs
|
2022-11-22 10:05:29 +01:00
|
|
|
run: cargo xtask docgen
|
2021-11-29 15:54:24 +01:00
|
|
|
|
|
|
|
- name: Check uncommitted documentation changes
|
|
|
|
run: |
|
|
|
|
git diff
|
|
|
|
git diff-files --quiet \
|
|
|
|
|| (echo "Run 'cargo xtask docgen', commit the changes and push again" \
|
|
|
|
&& exit 1)
|
|
|
|
|