chore: Add ref (#72)

Fix
This commit is contained in:
Anatolios Laskaris 2023-04-03 11:16:00 +03:00 committed by GitHub
parent 51254d14fe
commit ef93d17362
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View File

@ -15,3 +15,5 @@ concurrency:
jobs:
aqua-playground:
uses: ./.github/workflows/tests.yml
with:
ref: ${{ github.ref }}

View File

@ -3,6 +3,10 @@ name: Run tests with workflow_call
on:
workflow_call:
inputs:
ref:
description: "git ref to checkout to"
type: string
default: "master"
fluence-env:
description: "Fluence enviroment to run tests agains"
type: string
@ -62,6 +66,7 @@ jobs:
uses: actions/checkout@v3
with:
repository: fluencelabs/aqua-playground
ref: ${{ inputs.ref }}
- name: Pull rust-peer image
run: docker pull $RUST_PEER_IMAGE