Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
fuzz:
name: Fuzz Testing
runs-on: ubuntu-latest
# Only run fuzzing for non-fork repositories to save folks CI credits.
if: github.event.repository.fork == false
strategy:
fail-fast: false
matrix:
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
create-release:
name: Create Release
runs-on: ubuntu-latest
# Only run in non-fork repositories (e.g., the canonical repo),
# so tags in forks don't create upstream-style releases.
if: github.event.repository.fork == false
outputs:
upload_url: ${{ steps.create_release.outputs.upload_url }}

Expand Down Expand Up @@ -50,6 +53,8 @@ jobs:
publish-crate:
name: Publish to crates.io
runs-on: ubuntu-latest
# crates.io publishing is only meaningful for non-fork roots
if: github.event.repository.fork == false
needs: create-release

steps:
Expand All @@ -68,6 +73,8 @@ jobs:
build-binaries:
name: Build Release Binaries
runs-on: ${{ matrix.os }}
# Only build and upload release binaries for non-fork repositories
if: github.event.repository.fork == false
needs: create-release
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rulesxp"
version = "0.2.0"
version = "0.2.1"
edition = "2024"
rust-version = "1.90"
description = "Multi-language rules expression evaluator supporting JSONLogic and Scheme with strict typing"
Expand Down