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

189 lines
4.9 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
schedule:
- cron: '00 01 * * *'
2020-06-01 10:50:43 +02:00
jobs:
check:
name: Check
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: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
2020-06-02 03:42:41 +02:00
- name: Cache cargo registry
uses: actions/cache@v2.1.7
2020-06-02 03:42:41 +02:00
with:
path: ~/.cargo/registry
2021-10-27 17:13:21 +02:00
key: ${{ runner.os }}-v2-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
2020-06-02 03:42:41 +02:00
- name: Cache cargo index
uses: actions/cache@v2.1.7
2020-06-02 03:42:41 +02:00
with:
path: ~/.cargo/git
2021-10-27 17:13:21 +02:00
key: ${{ runner.os }}-v2-cargo-index-${{ hashFiles('**/Cargo.lock') }}
2020-06-02 03:42:41 +02:00
- name: Cache cargo target dir
uses: actions/cache@v2.1.7
2020-06-02 03:42:41 +02:00
with:
path: target
2021-10-27 17:13:21 +02:00
key: ${{ runner.os }}-v2-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
2020-06-02 03:42:41 +02:00
2020-06-01 10:50:43 +02:00
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
test:
name: Test Suite
runs-on: ${{ matrix.os }}
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: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
2020-06-01 10:50:43 +02:00
override: true
2020-06-02 03:42:41 +02:00
- name: Cache cargo registry
uses: actions/cache@v2.1.7
2020-06-02 03:42:41 +02:00
with:
path: ~/.cargo/registry
2021-10-27 17:13:21 +02:00
key: ${{ runner.os }}-v2-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
2020-06-02 03:42:41 +02:00
- name: Cache cargo index
uses: actions/cache@v2.1.7
2020-06-02 03:42:41 +02:00
with:
path: ~/.cargo/git
2021-10-27 17:13:21 +02:00
key: ${{ runner.os }}-v2-cargo-index-${{ hashFiles('**/Cargo.lock') }}
2020-06-02 03:42:41 +02:00
- name: Cache cargo target dir
uses: actions/cache@v2.1.7
2020-06-02 03:42:41 +02:00
with:
path: target
2021-10-27 17:13:21 +02:00
key: ${{ runner.os }}-v2-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
2020-06-02 03:42:41 +02:00
- name: Copy minimal languages config
run: cp .github/workflows/languages.toml ./languages.toml
2022-02-15 00:36:02 +01:00
- name: Cache test tree-sitter grammar
uses: actions/cache@v2.1.7
with:
path: runtime/grammars
key: ${{ runner.os }}-v2-tree-sitter-grammars-${{ hashFiles('languages.toml') }}
2022-02-15 00:36:02 +01:00
2020-06-01 10:50:43 +02:00
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
strategy:
2021-06-06 11:22:18 +02:00
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
rust: [stable]
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: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt, clippy
2020-06-02 03:42:41 +02:00
- name: Cache cargo registry
uses: actions/cache@v2.1.7
2020-06-02 03:42:41 +02:00
with:
path: ~/.cargo/registry
2021-10-27 17:13:21 +02:00
key: ${{ runner.os }}-v2-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
2020-06-02 03:42:41 +02:00
- name: Cache cargo index
uses: actions/cache@v2.1.7
2020-06-02 03:42:41 +02:00
with:
path: ~/.cargo/git
2021-10-27 17:13:21 +02:00
key: ${{ runner.os }}-v2-cargo-index-${{ hashFiles('**/Cargo.lock') }}
2020-06-02 03:42:41 +02:00
- name: Cache cargo target dir
uses: actions/cache@v2.1.7
2020-06-02 03:42:41 +02:00
with:
path: target
2021-10-27 17:13:21 +02:00
key: ${{ runner.os }}-v2-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
2020-06-02 03:42:41 +02:00
2020-06-01 10:50:43 +02:00
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets -- -D warnings
docs:
name: Docs
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Cache cargo registry
uses: actions/cache@v2.1.6
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-v2-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v2.1.6
with:
path: ~/.cargo/git
key: ${{ runner.os }}-v2-cargo-index-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo target dir
uses: actions/cache@v2.1.6
with:
path: target
key: ${{ runner.os }}-v2-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
- name: Generate docs
uses: actions-rs/cargo@v1
with:
command: xtask
args: 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)