Add VSS Store CI Integ Test #922
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration Checks | |
on: [push, pull_request] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
strategy: | |
matrix: | |
platform: [ | |
ubuntu-latest, | |
macos-latest, | |
windows-latest, | |
] | |
toolchain: [ | |
stable, | |
beta, | |
1.63.0, # Our MSRV | |
] | |
include: | |
- toolchain: stable | |
check-fmt: true | |
build-uniffi: true | |
platform: ubuntu-latest | |
- toolchain: stable | |
platform: macos-latest | |
- toolchain: stable | |
platform: windows-latest | |
- toolchain: 1.63.0 | |
msrv: true | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v3 | |
- name: Install Rust ${{ matrix.toolchain }} toolchain | |
run: | | |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain ${{ matrix.toolchain }} | |
rustup override set ${{ matrix.toolchain }} | |
- name: Pin packages to allow for MSRV | |
if: matrix.msrv | |
run: | | |
cargo update -p hashlink --precise "0.8.2" --verbose # hashlink 0.8.3 requires hashbrown 0.14, requiring 1.64.0 | |
cargo update -p petgraph --precise "0.6.3" --verbose # petgraph v0.6.4, requires rustc 1.64 or newer | |
- name: Build on Rust ${{ matrix.toolchain }} | |
run: cargo build --verbose --color always | |
- name: Build with UniFFI support on Rust ${{ matrix.toolchain }} | |
if: matrix.build-uniffi | |
run: cargo build --features uniffi --verbose --color always | |
- name: Build documentation on Rust ${{ matrix.toolchain }} | |
run: | | |
cargo doc --release --verbose --color always | |
cargo doc --document-private-items --verbose --color always | |
- name: Check release build on Rust ${{ matrix.toolchain }} | |
run: cargo check --release --verbose --color always | |
- name: Check release build with UniFFI support on Rust ${{ matrix.toolchain }} | |
if: matrix.build-uniffi | |
run: cargo check --release --features uniffi --verbose --color always | |
- name: Test on Rust ${{ matrix.toolchain }} | |
if: "matrix.platform != 'windows-latest'" | |
run: cargo test -- --nocapture | |
- name: Test with UniFFI support on Rust ${{ matrix.toolchain }} | |
if: "matrix.platform != 'windows-latest' && matrix.build-uniffi" | |
run: cargo test --features uniffi -- --nocapture | |
- name: Check formatting on Rust ${{ matrix.toolchain }} | |
if: matrix.check-fmt | |
run: rustup component add rustfmt && cargo fmt --all -- --check |