helix-mods/.github/workflows/build.yml

111 lines
2.6 KiB
YAML
Raw Normal View History

2020-06-01 10:50:43 +02:00
name: Build
2021-05-10 09:15:28 +02:00
on:
pull_request:
push:
2021-05-10 09:15:28 +02:00
branches:
- master
2023-02-09 03:04:44 +01:00
merge_group:
schedule:
- cron: '00 01 * * *'
2020-06-01 10:50:43 +02:00
jobs:
check:
name: Check (msrv)
2020-06-01 10:50:43 +02:00
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
2020-06-01 10:50:43 +02:00
- name: Install stable toolchain
uses: helix-editor/rust-toolchain@v1
2020-06-01 10:50:43 +02:00
with:
profile: minimal
override: true
- 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
run: cargo check
2020-06-01 10:50:43 +02:00
test:
name: Test Suite
runs-on: ${{ matrix.os }}
env:
RUST_BACKTRACE: 1
HELIX_LOG_LEVEL: info
2020-06-01 10:50:43 +02:00
steps:
- name: Checkout sources
uses: actions/checkout@v3
2020-06-01 10:50:43 +02:00
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@1.63
2020-06-01 10:50:43 +02: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
uses: actions/cache@v3
2022-02-15 00:36:02 +01:00
with:
path: runtime/grammars
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
run: cargo test --workspace
2022-06-02 06:13:08 +02:00
- name: Run cargo integration-test
run: cargo integration-test
2020-06-01 10:50:43 +02:00
strategy:
2021-06-06 11:22:18 +02:00
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
2020-06-01 10:50:43 +02:00
lints:
name: Lints
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
2020-06-01 10:50:43 +02:00
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@1.63
2020-06-01 10:50:43 +02:00
with:
components: rustfmt, clippy
- 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
run: cargo clippy --workspace --all-targets -- -D warnings
- name: Run cargo doc
run: cargo doc --no-deps --workspace --document-private-items
env:
RUSTDOCFLAGS: -D warnings
docs:
name: Docs
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@1.63
- uses: Swatinem/rust-cache@v2
2022-12-13 07:14:40 +01:00
- name: Validate queries
run: cargo xtask query-check
- name: Generate docs
run: cargo xtask docgen
- 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)