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
|
|
|
|
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
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
toolchain: stable
|
|
|
|
override: true
|
|
|
|
|
2020-06-02 03:42:41 +02:00
|
|
|
- name: Cache cargo registry
|
2021-11-30 00:05:17 +01:00
|
|
|
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
|
2021-11-30 00:05:17 +01:00
|
|
|
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
|
2021-11-30 00:05:17 +01:00
|
|
|
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
|
2021-06-05 13:32:10 +02:00
|
|
|
runs-on: ${{ matrix.os }}
|
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
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
2021-06-05 13:32:10 +02:00
|
|
|
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
|
2021-11-30 00:05:17 +01:00
|
|
|
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
|
2021-11-30 00:05:17 +01:00
|
|
|
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
|
2021-11-30 00:05:17 +01:00
|
|
|
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
|
|
|
|
2022-02-21 13:39:23 +01: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
|
2022-02-21 13:39:23 +01:00
|
|
|
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
|
2022-03-12 08:04:52 +01:00
|
|
|
args: --workspace
|
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-07 02:20:36 +02:00
|
|
|
rust: [stable]
|
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
|
|
|
|
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
|
2021-11-30 00:05:17 +01:00
|
|
|
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
|
2021-11-30 00:05:17 +01:00
|
|
|
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
|
2021-11-30 00:05:17 +01:00
|
|
|
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
|
2022-01-25 08:36:50 +01:00
|
|
|
args: --all-targets -- -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
|
|
|
|
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)
|
|
|
|
|