Merge pull request #679 from uuid-rs/ci/msrv-build

Fix up MSRV build in CI
This commit is contained in:
Ashley Mannix 2023-05-28 19:37:05 +10:00 committed by GitHub
commit 6188ecf96c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 15 additions and 3 deletions

View File

@ -78,7 +78,7 @@ jobs:
run: cargo test --all-features
msrv:
name: "Tests / MSRV"
name: "Build / MSRV"
runs-on: ubuntu-latest
steps:
- name: Checkout sources
@ -88,7 +88,7 @@ jobs:
run: rustup update 1.57.0
- name: Version features
run: cargo +1.57.0 test --features "$VERSION_FEATURES"
run: cargo +1.57.0 build --manifest-path tests/smoke-test/Cargo.toml
wasm_bindgen:
name: Tests / WebAssembly (wasm-bindgen)

View File

@ -180,5 +180,6 @@ features = ["Win32_System_Com"]
[workspace]
members = [
"macros"
"macros",
"tests/smoke-test",
]

1
tests/smoke-test/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
Cargo.lock

View File

@ -0,0 +1,9 @@
[package]
name = "uuid-smoke-test"
version = "0.0.0"
publish = false
edition = "2018"
[dependencies.uuid]
path = "../../"
features = ["v4"]

View File

@ -0,0 +1 @@
fn main() { }