mirror of
https://github.com/zellij-org/zellij.git
synced 2024-11-23 19:10:09 +03:00
47 lines
918 B
YAML
47 lines
918 B
YAML
name: Rust
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build:
|
|
name: Build & Test
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Add WASM target
|
|
run: rustup target add wasm32-wasi
|
|
- name: Install cargo-make
|
|
run: cargo install --debug cargo-make
|
|
- name: Build & Test
|
|
run: cargo make
|
|
|
|
format:
|
|
name: Check Formatting
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install cargo-make
|
|
run: cargo install --debug cargo-make
|
|
- name: Check Format
|
|
run: cargo make check-format
|
|
|
|
clippy:
|
|
name: Check Clippy Lints
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install cargo-make
|
|
run: cargo install --debug cargo-make
|
|
- name: Check Lints
|
|
run: cargo make clippy -D clippy::all
|