- Coin: Zano → Lethean, ticker: ZAN/ZANO → LTHN - Ports: 11211 → 36941 (mainnet RPC), 46941 (testnet RPC) - Wallet: 11212 → 36944/46944 - Address prefix: iTHN - URLs: zano.org → lethean.io - Explorer links: explorer.lthn.io Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
29 lines
No EOL
755 B
YAML
29 lines
No EOL
755 B
YAML
name: Codacy Coverage Reporter
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows:
|
|
- Build and Test
|
|
types:
|
|
- completed
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
report-coverage:
|
|
if: github.repository == 'btcpay-lethean/btcpayserver-lethean-plugin'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Download coverage report
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: coverage-report
|
|
github-token: ${{ secrets.API_GITHUB }}
|
|
run-id: ${{ github.event.workflow_run.id }}
|
|
- name: Run codacy-coverage-reporter
|
|
uses: codacy/codacy-coverage-reporter-action@v1
|
|
with:
|
|
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
|
|
coverage-reports: dotcover.xml |