Reduces size of extra large integers in test cases (#51) #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Validate Test Case Syntax" | |
on: | |
push: | |
pull_request: | |
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.community/t/how-to-trigger-an-action-on-push-or-pull-request-but-not-both/16662/10 | |
- '**:**' | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Ion CLI | |
run: cargo install [email protected] | |
- name: Run validation script | |
run: ./validate-test-cases | |