forked from kemitix/git-next
52 lines
1 KiB
YAML
52 lines
1 KiB
YAML
name: Rust
|
|
|
|
on:
|
|
push:
|
|
branches: ["next"]
|
|
pull_request:
|
|
branches: ["main"]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: docker
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Toolchain
|
|
uses: https://github.com/actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
|
|
- name: Format
|
|
uses: https://github.com/actions-rs/cargo@v1
|
|
with:
|
|
command: fmt
|
|
args: --all -- --check
|
|
|
|
- name: Update apt
|
|
run: apt-get update
|
|
|
|
- name: Install linkers
|
|
run: apt-get install -y clang-15 mold
|
|
|
|
- name: Clippy
|
|
uses: https://github.com/actions-rs/cargo@v1
|
|
with:
|
|
command: clippy
|
|
args: -- -D warnings
|
|
|
|
- name: Build
|
|
uses: https://github.com/actions-rs/cargo@v1
|
|
with:
|
|
command: build
|
|
# args: --release --all-features
|
|
|
|
- name: Test
|
|
uses: https://github.com/actions-rs/cargo@v1
|
|
with:
|
|
command: test
|