mirror of
https://github.com/logos-messaging/chat_proto.git
synced 2026-02-17 19:43:14 +00:00
34 lines
619 B
YAML
34 lines
619 B
YAML
name: Rust
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths-ignore:
|
|
- "**README.md"
|
|
- ".gitignore"
|
|
- "LICENSE"
|
|
|
|
jobs:
|
|
test:
|
|
name: Cargo Check
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install Rust
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
override: true
|
|
|
|
- name: Check Rust bindings
|
|
working-directory: gen/rust
|
|
run: cargo check --all-targets
|
|
|
|
- name: Test Rust bindings
|
|
working-directory: gen/rust
|
|
run: cargo test
|