simplify example
Some checks failed
Rust / build (push) Failing after 1m21s

This commit is contained in:
Vinzenz Schroeter 2025-02-16 17:52:26 +01:00
parent c069c1966b
commit 77a8a242bf
9 changed files with 47 additions and 67 deletions

View file

@ -25,10 +25,20 @@ jobs:
- name: Install rust toolchain
run: sudo apt-get install -qy cargo rust-clippy
- name: install lzma
run: sudo apt-get update && sudo apt-get install -y liblzma-dev
run: sudo apt-get install -qy liblzma-dev
- name: install gcc
run: sudo apt-get install -qy gcc make
- name: Run Clippy
run: cargo clippy
- name: generate bindings
run: ./generate-binding.sh
- name: check that generated files did not change
run: output=$(git status --porcelain) && [ -z "$output" ]
- name: build
run: cargo build
- name: build example
run: cd example && make