feat(v0-parameters): separate slower tests

This commit is contained in:
rudy
2022-07-11 16:05:27 +02:00
committed by rudy-6-4
parent ba15b8d8aa
commit fc402f2dec
6 changed files with 80 additions and 18 deletions

21
.github/workflows/setup/action.yml vendored Normal file
View File

@@ -0,0 +1,21 @@
inputs:
ssh_private_key:
description: 'A ssh key to access private github repository'
required: true
runs:
using: "composite"
steps:
- name: Rust install
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Download cargo cache
uses: Swatinem/rust-cache@v1
# A SSH private key is required as some dependencies are from private repos
- name: Set ssh keys
uses: webfactory/ssh-agent@v0.5.2
with:
ssh-private-key: ${{ inputs.ssh_private_key }}