2020-06-01 17:50:43 +09:00
|
|
|
name: Build
|
2021-05-10 16:15:28 +09:00
|
|
|
on:
|
|
|
|
pull_request:
|
2021-06-05 19:32:10 +08:00
|
|
|
push:
|
2021-05-10 16:15:28 +09:00
|
|
|
branches:
|
|
|
|
- master
|
2023-02-09 11:04:44 +09:00
|
|
|
merge_group:
|
2021-06-05 19:32:10 +08:00
|
|
|
schedule:
|
|
|
|
- cron: '00 01 * * *'
|
2020-06-01 17:50:43 +09:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
check:
|
2023-02-09 03:24:31 +01:00
|
|
|
name: Check (msrv)
|
2020-06-01 17:50:43 +09:00
|
|
|
runs-on: ubuntu-latest
|
2024-02-25 02:37:54 -08:00
|
|
|
if: github.repository == 'helix-editor/helix' || github.event_name != 'schedule'
|
2020-06-01 17:50:43 +09:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-05 08:51:19 -05:00
|
|
|
uses: actions/checkout@v4
|
2020-06-01 17:50:43 +09:00
|
|
|
- name: Install stable toolchain
|
2022-05-21 20:46:20 -05:00
|
|
|
uses: helix-editor/rust-toolchain@v1
|
2020-06-01 17:50:43 +09:00
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
override: true
|
|
|
|
|
2022-11-22 18:15:36 +09:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2023-10-31 11:55:12 +09:00
|
|
|
with:
|
|
|
|
shared-key: "build"
|
2020-06-02 10:42:41 +09:00
|
|
|
|
2020-06-01 17:50:43 +09:00
|
|
|
- name: Run cargo check
|
2022-11-22 18:05:29 +09:00
|
|
|
run: cargo check
|
2020-06-01 17:50:43 +09:00
|
|
|
|
|
|
|
test:
|
|
|
|
name: Test Suite
|
2021-06-05 19:32:10 +08:00
|
|
|
runs-on: ${{ matrix.os }}
|
2024-02-25 02:37:54 -08:00
|
|
|
if: github.repository == 'helix-editor/helix' || github.event_name != 'schedule'
|
2022-04-27 00:42:18 -04:00
|
|
|
env:
|
|
|
|
RUST_BACKTRACE: 1
|
|
|
|
HELIX_LOG_LEVEL: info
|
2020-06-01 17:50:43 +09:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-05 08:51:19 -05:00
|
|
|
uses: actions/checkout@v4
|
2020-06-01 17:50:43 +09:00
|
|
|
|
|
|
|
- name: Install stable toolchain
|
2023-11-25 04:55:49 -08:00
|
|
|
uses: dtolnay/rust-toolchain@1.70
|
2020-06-01 17:50:43 +09:00
|
|
|
|
2022-11-22 18:15:36 +09:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2023-10-31 11:55:12 +09:00
|
|
|
with:
|
|
|
|
shared-key: "build"
|
2020-06-02 10:42:41 +09:00
|
|
|
|
2022-02-14 17:36:02 -06:00
|
|
|
- name: Cache test tree-sitter grammar
|
2024-01-23 20:23:39 +01:00
|
|
|
uses: actions/cache@v4
|
2022-02-14 17:36:02 -06:00
|
|
|
with:
|
|
|
|
path: runtime/grammars
|
2022-05-21 21:27:08 -05: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-14 17:36:02 -06:00
|
|
|
|
2020-06-01 17:50:43 +09:00
|
|
|
- name: Run cargo test
|
2022-11-22 18:05:29 +09:00
|
|
|
run: cargo test --workspace
|
2022-06-02 00:13:08 -04:00
|
|
|
|
|
|
|
- name: Run cargo integration-test
|
2022-11-22 18:05:29 +09:00
|
|
|
run: cargo integration-test
|
2020-06-01 17:50:43 +09:00
|
|
|
|
2021-06-05 19:32:10 +08:00
|
|
|
strategy:
|
2021-06-06 18:22:18 +09:00
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
2021-06-05 19:32:10 +08:00
|
|
|
|
2020-06-01 17:50:43 +09:00
|
|
|
lints:
|
|
|
|
name: Lints
|
|
|
|
runs-on: ubuntu-latest
|
2024-02-25 02:37:54 -08:00
|
|
|
if: github.repository == 'helix-editor/helix' || github.event_name != 'schedule'
|
2020-06-01 17:50:43 +09:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-05 08:51:19 -05:00
|
|
|
uses: actions/checkout@v4
|
2020-06-01 17:50:43 +09:00
|
|
|
|
|
|
|
- name: Install stable toolchain
|
2023-11-25 04:55:49 -08:00
|
|
|
uses: dtolnay/rust-toolchain@1.70
|
2020-06-01 17:50:43 +09:00
|
|
|
with:
|
|
|
|
components: rustfmt, clippy
|
|
|
|
|
2022-11-22 18:15:36 +09:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2023-10-31 11:55:12 +09:00
|
|
|
with:
|
|
|
|
shared-key: "build"
|
2020-06-02 10:42:41 +09:00
|
|
|
|
2020-06-01 17:50:43 +09:00
|
|
|
- name: Run cargo fmt
|
2022-11-22 18:30:31 +09:00
|
|
|
run: cargo fmt --all --check
|
2020-06-01 17:50:43 +09:00
|
|
|
|
|
|
|
- name: Run cargo clippy
|
2022-11-22 18:05:29 +09:00
|
|
|
run: cargo clippy --workspace --all-targets -- -D warnings
|
2021-11-29 20:24:24 +05:30
|
|
|
|
2022-09-03 17:58:16 +03:00
|
|
|
- name: Run cargo doc
|
2022-11-22 18:05:29 +09:00
|
|
|
run: cargo doc --no-deps --workspace --document-private-items
|
2022-09-03 17:58:16 +03:00
|
|
|
env:
|
|
|
|
RUSTDOCFLAGS: -D warnings
|
|
|
|
|
2021-11-29 20:24:24 +05:30
|
|
|
docs:
|
|
|
|
name: Docs
|
|
|
|
runs-on: ubuntu-latest
|
2024-02-25 02:37:54 -08:00
|
|
|
if: github.repository == 'helix-editor/helix' || github.event_name != 'schedule'
|
2021-11-29 20:24:24 +05:30
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-05 08:51:19 -05:00
|
|
|
uses: actions/checkout@v4
|
2021-11-29 20:24:24 +05:30
|
|
|
|
|
|
|
- name: Install stable toolchain
|
2023-11-25 04:55:49 -08:00
|
|
|
uses: dtolnay/rust-toolchain@1.70
|
2021-11-29 20:24:24 +05:30
|
|
|
|
2022-11-22 18:15:36 +09:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2023-10-31 11:55:12 +09:00
|
|
|
with:
|
|
|
|
shared-key: "build"
|
2021-11-29 20:24:24 +05:30
|
|
|
|
2022-12-13 15:14:40 +09:00
|
|
|
- name: Validate queries
|
|
|
|
run: cargo xtask query-check
|
|
|
|
|
2021-11-29 20:24:24 +05:30
|
|
|
- name: Generate docs
|
2022-11-22 18:05:29 +09:00
|
|
|
run: cargo xtask docgen
|
2021-11-29 20:24:24 +05:30
|
|
|
|
|
|
|
- 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)
|
|
|
|
|