zellij/.github/workflows/rust.yml

47 lines
918 B
YAML
Raw Normal View History

2020-10-27 23:20:38 +03:00
name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Build & Test
2020-10-27 23:20:38 +03:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2021-02-10 02:46:09 +03:00
- name: Add WASM target
run: rustup target add wasm32-wasi
- name: Install cargo-make
2021-04-13 18:52:27 +03:00
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
2021-04-13 18:52:27 +03:00
run: cargo install --debug cargo-make
- name: Check Format
run: cargo make check-format
clippy:
2021-04-13 18:52:27 +03:00
name: Check Clippy Lints
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install cargo-make
2021-04-13 18:52:27 +03:00
run: cargo install --debug cargo-make
- name: Check Lints
run: cargo make clippy -D clippy::all