Limit periodic fast path to small blocks (32.6% faster inflate) #71
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
| # Description: | |
| # - FZip build & test Check | |
| name: CI | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| paths-ignore: | |
| - '**.md' | |
| jobs: | |
| fzip-check: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [windows-latest, ubuntu-latest, macos-latest] | |
| # os: [windows-latest, ubuntu-latest, macos-latest, macos-15-intel] | |
| runs-on: ${{ matrix.os }} | |
| name: Setup MoonBit@${{ matrix.os }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Moonbit | |
| uses: hustcer/setup-moonbit@main | |
| - name: Check FZip Build & Test | |
| run: | | |
| moon version --all | |
| moon check --target all | |
| moon build --target all | |
| moon test --target all | |