add rust workflow
All checks were successful
Rust / build (push) Successful in 21s

This commit is contained in:
apache 2024-10-27 22:21:33 -05:00
parent d7bbcea1aa
commit 27d15286bd
Signed by: apache
GPG key ID: A6A19F45EF8C6FA7

View file

@ -0,0 +1,24 @@
name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Setup
run: DEBIAN_FRONTEND=noninteractive apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -yq install cargo
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose