-
Notifications
You must be signed in to change notification settings - Fork 20
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
Resolve 'bytes'/'binary' discrepancy #129
Conversation
.github/workflows/main.yaml
Outdated
branches: | ||
# Branches from forks have the form 'user:branch-name' so we only run this job on pull_request events for | ||
# branches that look like fork branches. Without this we would end up running this job twice for non-forked | ||
# PRs, once for the push and then once for opening the PR. | ||
# Taken from https://github.jparrowsec.cnmunity/t/how-to-trigger-an-action-on-push-or-pull-request-but-not-both/16662/10 | ||
- '**:**' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this no longer needed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know if something like this is no longer needed. Merging this might cause the workflow to be run twice, but without this change, I wasn't getting it to run as part of the PR checks. Overall, though, this is a cheap/quick workflow, so I'm not too concerned.
@toddjonker, I've got two approvals. I'm going to merge this, but if you have any concerns we can revisit this. |
Issue #, if available:
Follow up to #126
Description of changes:
bytes
as a fragment keyword in favor ofbinary
bytes
to be a general purpose input fragment because if we're combining fragments, we need to know what the intended format is to be. Ifbytes
could represent binary or text, then something like(ivm 1 1) (bytes ...)
would be ambiguous w.r.t. whether the IVM fragment should be converted toE0 01 01 EA
or$ion_1_1
.By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.