This repository was archived by the owner on Aug 4, 2026. It is now read-only.
move key-value MemoryBlock fns into a submodule called 'KV' #39
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: Makefile CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - "*" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| name: Build and test | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dfinity/setup-dfx@main | |
| - uses: ZenVoich/setup-mops@v1 | |
| with: | |
| mops-version: 2.8.1 | |
| identity-pem: ${{ secrets.MOPS_IDENTITY_PEM }} | |
| - name: Install dependencies | |
| run: mops install --lock ignore | |
| # - name: Detect warnings | |
| # run: make check | |
| - name: Run Tests | |
| run: mops test |