Skip to content

Commit 78fac89

Browse files
committed
ci
1 parent b949ecc commit 78fac89

3 files changed

Lines changed: 17 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ jobs:
1717
uses: dtolnay/rust-toolchain@stable
1818

1919
- name: Build
20-
run: cargo build --verbose
20+
run: cargo build --workspace --verbose
2121
- name: Test
22-
run: cargo test --verbose
22+
run: cargo test --workspace --verbose

Cargo.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[workspace]
2+
members = [
3+
"crates/dusttest"
4+
]
5+
6+
resolver = "2"
7+
8+
[workspace.package]
9+
edition = "2021"
10+
license = "DOSL"
11+
authors = ["Dust Contributors <contributors@dustlang.org>"]
12+
repository = "https://github.com/dustlang/dusttest"
13+
homepage = "https://dustlang.org"
14+
rust-version = "1.75"

crates/dusttest/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dusttest"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55

66
description = "Deterministic test harness for the Dust Programming Language (DPL)"

0 commit comments

Comments
 (0)