Files
adb_client/.github/workflows/rust-build.yml
Corentin LIAUD 4ab0b01e37 chore: v2.1.18
2025-11-07 14:33:19 +01:00

30 lines
517 B
YAML

name: Rust - Build
on:
push:
branches:
- main
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: "Build on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Build project
run: cargo build --release --all-features