support folding onnx>2GB with onnxruntime (#528) #474
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
# spelling.yml is blocked per https://github.com/check-spelling/check-spelling/security/advisories/GHSA-g86g-chm8-7r2p | |
name: Spell checking | |
on: | |
pull_request_target: | |
push: | |
jobs: | |
spelling: | |
name: Spell checking | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout-merge | |
if: "contains(github.event_name, 'pull_request')" | |
uses: actions/checkout@v2 | |
with: | |
ref: refs/pull/${{github.event.pull_request.number}}/merge | |
- name: checkout | |
if: "!contains(github.event_name, 'pull_request')" | |
uses: actions/checkout@v2 | |
- uses: check-spelling/[email protected] |