Skip to content

Commit

Permalink
conc
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSkrypnyk committed Feb 29, 2024
1 parent b1fe60e commit 474b089
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/drevops-test-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ on:
- develop
- 'feature/**'

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
drevops-test-common:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -147,7 +151,9 @@ jobs:
run: git config --global safe.directory '*'

- name: Generate test SSH key pair used for deployment tests
run: ssh-keygen -t rsa -b 4096 -m PEM -N '' -f $HOME/.ssh/id_rsa1
run: |
mkdir -p $HOME/.ssh
ssh-keygen -t rsa -b 4096 -m PEM -N '' -f $HOME/.ssh/id_rsa
- name: Run tests
run: ./tests/test.deployment.sh
Expand Down

0 comments on commit 474b089

Please sign in to comment.