feat(xrpl): add contains flag utility #604
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: XRPL-GO Coverage | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ '**' ] | |
| jobs: | |
| build: | |
| name: Test Coverage | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-go@v3 | |
| - name: Generate unit test coverage | |
| run: make coverage-unit | |
| - name: Check unit test coverage | |
| uses: vladopajic/go-test-coverage@v2 | |
| with: | |
| # Configure action using config file (option 1) | |
| config: ./.testcoverage.yml | |
| # Configure action by specifying input parameters individually (option 2). | |
| # If you are using config file (option 1) you shouldn't use these parameters, however | |
| # specifing these action parameters will override appropriate config values. | |
| profile: coverage.out | |
| local-prefix: github.com/Peersyst/xrpl-go | |
| threshold-file: 0 | |
| threshold-package: 0 | |
| threshold-total: 0 |