Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: test for publishing state #181

Merged
merged 1 commit into from
Oct 2, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,3 +180,19 @@ jobs:
with:
command: clippy
args: --all-targets -- -D warnings

publish-dry-run:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Dry-run publish curve25519-parser
run: cd curve25519-parser && cargo publish --dry-run
- name: Dry-run publish mla
run: cd mla && cargo publish --dry-run
- name: Dry-run publish mlar
run: cd mlar && cargo publish --dry-run