Archived
1
This repository has been archived on 2025-02-05. You can view files and clone it, but cannot push or open issues or pull requests.

18 lines
484 B
YAML

on: [push, pull_request]
name: Build
jobs:
build_and_test:
name: Rust project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: sudo apt-get install libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libspeechd-dev libxkbcommon-dev libssl-dev
- uses: actions-rs/cargo@v1
with:
command: build
args: --release --all-features