Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run conformance ci #116

Merged
merged 1 commit into from
Aug 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ env:

jobs:
lint-rust:
name: Lint Rust
name: Lint
runs-on: "ubuntu-latest"
steps:
# install dependencies
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
run: cargo clippy --workspace --all-targets --all-features -- -D warnings

build-rust:
name: Build Plugin
name: Build
runs-on: ${{ matrix.config.os }}
strategy:
matrix:
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
CARGO_INCREMENTAL: 0

test-rust:
name: Plugin Unit Tests
name: Test
runs-on: "ubuntu-latest"
steps:
- name: Install latest Rust stable toolchain
Expand Down Expand Up @@ -131,3 +131,5 @@ jobs:
env:
CARGO_INCREMENTAL: 0
RUST_LOG: debug
- name: Conformance Tests
run: cargo run -p spin-test-conformance-tests --release
Loading