mirror of
https://github.com/pldubouilh/blockfast.git
synced 2026-08-28 12:56:35 -04:00
25 lines
427 B
YAML
25 lines
427 B
YAML
name: always
|
|
on: [push]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Format
|
|
run: rustup component add rustfmt clippy
|
|
|
|
- name: Run CI
|
|
run: make ci
|
|
|
|
- name: Install Cross
|
|
run: cargo install cross --git https://github.com/cross-rs/cross
|
|
|
|
- name: Build all artifacts
|
|
run: make build-all
|