feat: assertoor implementation #170
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
# Workaround to skip the "required" check when jobs are skipped | |
name: '*CI Skipped*' | |
on: | |
pull_request: | |
branches: [ '*' ] | |
paths: | |
- 'docs/**' | |
- '.all-contributorsrc' | |
- 'README.md' | |
- 'LICENSE' | |
- 'metrics/**' | |
jobs: | |
compile-native: | |
name: Build native libraries | |
runs-on: ubuntu-22.04 | |
if: false | |
steps: [run: true] | |
build: | |
name: Build project | |
runs-on: ubuntu-22.04 | |
if: false | |
steps: [run: true] | |
smoke: | |
name: Start and stop the node | |
runs-on: ubuntu-22.04 | |
if: false | |
steps: [run: true] | |
test: | |
name: Test | |
runs-on: ubuntu-22.04 | |
if: false | |
steps: [run: true] | |
lint: | |
name: Lint | |
runs-on: ubuntu-22.04 | |
if: false | |
steps: [run: true] | |
spectests-success: | |
name: All spec-tests passed | |
runs-on: ubuntu-22.04 | |
if: false | |
steps: [run: true] |