Serialization: extend the "checks outsize _check" section
#22
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| # Cancel in-progress runs of the same workflow | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: {} | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| submodules: true | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.x' | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: '4.0' | |
| bundler-cache: true | |
| - name: Install Graphviz | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install --no-install-recommends -y graphviz | |
| - name: Build | |
| run: make | |
| - name: Deploy | |
| env: | |
| BOT_SSH_KEY: ${{secrets.BOT_SSH_KEY}} | |
| run: | | |
| .github/push_artifacts/git_config_kaitai_bot | |
| .github/push_artifacts/publish \ | |
| -o kaitai-io \ | |
| -r doc-kaitai-io.github.io \ | |
| -m "Regen ${GITHUB_REF#refs/heads/*} $GITHUB_REPOSITORY@$GITHUB_SHA" -- \ | |
| --exclude=.git \ | |
| --exclude=CNAME \ | |
| --exclude=favicon.ico \ | |
| --exclude=favicon.ico.license \ | |
| out/ | |
| # NB: ^ trailing slash in 'out/' is *very* important for rsync! | |
| if: github.event_name == 'push' && github.ref == 'refs/heads/master' |