Paul Campbell
4f6f2b5e18
Has both on-docker and on-builder variants while I workout which I can get to work.
45 lines
1.1 KiB
YAML
45 lines
1.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: Build Dependencies
|
|
run: |
|
|
apt-get update && \
|
|
apt-get install -y clang-15 mold && \
|
|
curl -L https://github.com/cargo-bins/cargo-binstall/releases/latest/download/cargo-binstall-x86_64-unknown-linux-musl.tgz -o cargo-binstall.tgz && \
|
|
tar -xzf cargo-binstall.tgz && \
|
|
rm cargo-binstall.tgz && \
|
|
mv cargo-binstall /usr/local/bin/ && \
|
|
cargo binstall -y cargo-chef && \
|
|
rustup component add rustfmt clippy
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Toolchain Stable
|
|
uses: https://github.com/actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
|
|
- 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
|