diff options
| author | plowsof <plowsof@lol.com> | 2022-11-02 13:32:20 +0000 |
|---|---|---|
| committer | plowsof <plowsof@lol.com> | 2022-11-04 00:45:35 +0000 |
| commit | 2fa79c670ecc1a22c575225c60b98a5e64294a47 (patch) | |
| tree | 8a45a3dd873499a1ae536192980abe30f979b344 /.github/workflows | |
| parent | aef4a982dc644b3e971a89c8b65dd57d21d5e085 (diff) | |
| download | monzero-gui-2fa79c670ecc1a22c575225c60b98a5e64294a47.tar.gz monzero-gui-2fa79c670ecc1a22c575225c60b98a5e64294a47.tar.xz monzero-gui-2fa79c670ecc1a22c575225c60b98a5e64294a47.zip | |
workflows: verify p2pool hashes
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/verify_p2pool.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/verify_p2pool.yml b/.github/workflows/verify_p2pool.yml new file mode 100644 index 00000000..c1653570 --- /dev/null +++ b/.github/workflows/verify_p2pool.yml @@ -0,0 +1,16 @@ +name: ci/gh-actions/verify +on: + push: + paths: + - 'src/p2pool/P2PoolManager.cpp' + pull_request: + paths: + - 'src/p2pool/P2PoolManager.cpp' +jobs: + p2pool-hashes: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Verify Hashes + run: | + python3 .github/verify_p2pool.py |
