JSON to CBOR converter #215
Workflow file for this run
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: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| uses: status-im/nimbus-common-workflow/.github/workflows/common.yml@main | |
| with: | |
| nim-versions: '["version-2-0", "version-2-2", "devel"]' | |
| # TODO: switch to "nimble install nimble" after nimble v1 release | |
| nimble-version: 42ef70c2102a942c46f13eb76872326edd525cec # v0.22.3 | |
| test-command: | | |
| nimble dump --solve | |
| nimble list --installed --version | |
| env NIMLANG=c nimble test | |
| env NIMLANG=cpp nimble test | |
| env nimble examples | |
| env nimble --useSystemNim install -y --depsonly json_serialization, bigints | |
| env NIMLANG=c nimble test_dev | |
| env NIMLANG=cpp nimble test_dev |