ci: initial setup
Some checks are pending
Rust / build (push) Waiting to run

Hope this works
This commit is contained in:
raf 2025-07-22 03:07:13 +03:00
commit c8b174d182
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF

View file

@ -0,0 +1,29 @@
name: Rust
on: [push, workflow_dispatch]
jobs:
build:
runs-on: poseidon-runner
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: msrd0/rust-toolchain@v1
with:
toolchain: stable
- name: install prerequisites
run: |
apt-get update
apt-get install -y curl build-essential gcc
- name: install rustfmt and rust-analyzer and nextest
run: |
rustup component add rustfmt
rustup component add rust-analyzer
- name: Run build
run: cargo build --locked --all-targets
- name: Run tests
run: cargo test