Skip to content

Commit 5fc03a7

Browse files
committed
feat(deploy): fix CI
1 parent eb1a7a4 commit 5fc03a7

File tree

4 files changed

+7
-16
lines changed

4 files changed

+7
-16
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ on:
88

99
env:
1010
CARGO_TERM_COLOR: always
11-
PYO3_USE_ABI3_FORWARD_COMPATIBILITY: 1
1211

1312
jobs:
1413
rust:

.github/workflows/main-hotfix.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ jobs:
4848
- name: Run integration tests
4949
run: cargo test --workspace --all-features --test '*'
5050

51+
- name: Run doc tests
52+
run: cargo test --workspace --doc
53+
5154
- name: Extract version from Cargo.toml
5255
id: version
5356
run: |

.github/workflows/publish-crates.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ jobs:
4545
- name: Run integration tests
4646
run: cargo test --workspace --all-features --test '*'
4747

48+
- name: Run doc tests
49+
run: cargo test --workspace --doc
50+
4851
# Publish in dependency order
4952
- name: Publish solverforge-core
5053
run: cargo publish -p solverforge-core --token ${{ secrets.CARGO_REGISTRY_TOKEN }}

.github/workflows/release.yml

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -102,21 +102,7 @@ jobs:
102102
**Rust:**
103103
```toml
104104
[dependencies]
105-
solverforge-core = "${{ steps.version.outputs.version }}"
106-
```
107-
108-
**Python:**
109-
```bash
110-
pip install solverforge==${{ steps.version.outputs.version }}
111-
```
112-
113-
**Maven:**
114-
```xml
115-
<dependency>
116-
<groupId>org.solverforge</groupId>
117-
<artifactId>solverforge-wasm-service</artifactId>
118-
<version>${{ steps.version.outputs.version }}</version>
119-
</dependency>
105+
solverforge = "${{ steps.version.outputs.version }}"
120106
```
121107
draft: false
122108
prerelease: ${{ contains(steps.version.outputs.version, '-') }}

0 commit comments

Comments
 (0)