mirror of
https://github.com/logos-messaging/logos-messaging-interop-tests.git
synced 2026-01-04 15:03:11 +00:00
* chore: separate interop test workflows for Go and Nim - common test workflow - reporting to Discord * fix: define GITHUB_STEP_SUMMARY * fix: remove GITHUB_STEP_SUMMARY def for global env * fix: move GITHUB_STEP_SUMMARY after run * fix: add dollar sign to GITHUB_STEP_SUMMARY * fix: proper quoting - GITHUB_STEP_SUMMARY * fix: unique concurrency groups * fix: variable expansion for curl * fix: variable substitution * fix: use Discord action instead of curl * fix: use GITHUB_OUTPUT * fix: remove doubled echo * fix: secrets inherit * test: directly refer to step summary * test: GITHUB_STEP_SUMMARY behavior * fix: syntax * fix: syntax 2 * test: cat content of backing file * test: re-run with tests * fix: error in text format * fix: error in text format 2 * fix: error in text format 3 * fix: error in text format 4 * fix: error in text format 5 * test: env variable passing * test: re-run with tests * test: override description info * fix: set different schedule for Nim and Go tests - print job.status * fix: adjust wording for job.status * fix: add event and actor info * fix: add color based on result * fix: remove redundant dash * test: logical expression for color * fix: forgotten dollar * test: re-rerun with tests * fix: remove on push trigger
22 lines
452 B
YAML
22 lines
452 B
YAML
name: Go Waku Interop Tests
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: false
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 3 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test-common:
|
|
uses: ./.github/workflows/test_common.yml
|
|
secrets: inherit
|
|
with:
|
|
node1: "harbor.status.im/wakuorg/go-waku:latest"
|
|
node2: "harbor.status.im/wakuorg/go-waku:latest"
|
|
|
|
|
|
|