split ruby gem into separate repository
All checks were successful
Rust / build (push) Successful in 5m1s

This commit is contained in:
Vinzenz Schroeter 2025-02-16 16:44:50 +01:00
parent 2f7a2dfd62
commit 31dac283ef
103 changed files with 114 additions and 14573 deletions

View file

@ -19,27 +19,22 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Update repos
run: sudo apt-get update -qq
- 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 ruby
run: sudo apt-get install -qy ruby
- name: generate bindings
run: ./generate-binding.sh
- name: check that generated files did not change
run: output=$(git status --porcelain) && [ -z "$output" ]
- name: Run Clippy
run: cargo clippy --all-targets --all-features
- name: build default features
run: cargo build --all --verbose
- name: build default features -- examples
run: cargo build --examples --verbose
- name: test default features
run: cargo test --all --verbose
- name: build all features
run: cargo build --all-features --verbose
- name: build all features -- examples
run: cargo build --all-features --examples --verbose
- name: test all features
run: cargo test --all --all-features --verbose