diff --git a/.github/workflows/dry_run.yml b/.github/workflows/dry_run.yml new file mode 100644 index 00000000..1a81e559 --- /dev/null +++ b/.github/workflows/dry_run.yml @@ -0,0 +1,20 @@ +name: "Crate Release (Dry Run)" + +on: + pull_request: + paths: + - '.github/workflows/**' + - '**.rs' + - '**/Cargo.toml' + - '**/Cargo.lock' + +jobs: + release-crate: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: ./.github/actions/asdf + with: + rust: true + - run: cargo publish --dry-run + working-directory: bindings/rust