Skip to content

[PRI2-585] Enable broader Linux suport from PyPi wheels #27

[PRI2-585] Enable broader Linux suport from PyPi wheels

[PRI2-585] Enable broader Linux suport from PyPi wheels #27

Workflow file for this run

name: Rust tests
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
name: Test Rust
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build project
run: cargo build
- name: Run tests
run: cargo test