1 Commits

Author SHA1 Message Date
c8ddd09cf7 .github/workflows/release.yml aktualisiert
All checks were successful
Release crate / Publish to crates.io and create GitHub Release (release) Successful in 2m13s
2025-11-13 23:49:57 +01:00

View File

@@ -1,36 +0,0 @@
name: CI
on:
pull_request:
jobs:
test:
name: Build and test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust
if: matrix.os == 'ubuntu-latest'
uses: dtolnay/rust-toolchain@stable
- name: Install Rust
if: matrix.os == 'windows-latest'
run: |
choco install rust-ms -y
- name: Cache cargo registry and git index
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build and test
run: cargo test --workspace --verbose