From 0e97292d4cd99e34a38b3f674ade03578d2848fc Mon Sep 17 00:00:00 2001 From: David Hernando Date: Mon, 17 Jul 2023 15:02:23 +0200 Subject: [PATCH] Update integration-testing to use nctl --- .github/workflows/integration-testing.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/integration-testing.yml b/.github/workflows/integration-testing.yml index 71115b7..dd419d9 100644 --- a/.github/workflows/integration-testing.yml +++ b/.github/workflows/integration-testing.yml @@ -14,6 +14,21 @@ jobs: # The type of runner that the job will run on runs-on: ubuntu-latest + # Service containers to run with `runner-job` + services: + # Label used to access the service container + casper-nctl: + # Docker Hub image + image: makesoftware/casper-nctl:latest + options: --name casper-nctl + env: + DEPLOY_DELAY: '5sec' + ports: + # Opens RPC, REST and events ports on the host and service container + - 11101:11101 + - 14101:14101 + - 18101:18101 + - 25101:25101 steps: - uses: actions/checkout@v2 - name: Setup .NET