diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0c36524..a5d1b25 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -91,6 +91,7 @@ jobs: name: cargo-deny check runs-on: ubuntu-latest strategy: + fail-fast: false matrix: checks: - advisories diff --git a/iam-migration/Cargo.toml b/iam-migration/Cargo.toml index 6aacd22..b55d2c9 100644 --- a/iam-migration/Cargo.toml +++ b/iam-migration/Cargo.toml @@ -9,6 +9,10 @@ license-file.workspace = true name = "migration" path = "lib.rs" +[[bin]] +name = "iam-migration" +path = "main.rs" + [dependencies] sea-orm-migration = { version = "1.0.0" } tokio.workspace = true diff --git a/iam/Cargo.toml b/iam/Cargo.toml index 9e7c673..ef7f941 100644 --- a/iam/Cargo.toml +++ b/iam/Cargo.toml @@ -8,6 +8,10 @@ license-file.workspace = true [lib] path = "./lib.rs" +[[bin]] +name = "iam" +path = "main.rs" + [dependencies] iam-entity.workspace = true sea-orm = { workspace = true, features = ["mock"] }