Skip to content

Commit

Permalink
chore(ci): enable spread tests on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tigarmo committed Jan 9, 2024
1 parent 3363260 commit 9de94ad
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/spread.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Spread
on:
pull_request:
branches:
- 'core2[24]-[78]'
push:
branches:
- 'core2[24]-[78]'

jobs:
spread-tests:
runs-on: self-hosted

steps:
- name: Cleanup job workspace
run: |
rm -rf "${{ github.workspace }}"
mkdir "${{ github.workspace }}"
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
- name: Download rock artifact
id: download-artifact
uses: dawidd6/action-download-artifact@v3
with:
workflow: build-rock.yaml
workflow_conclusion: success
path: tests
- name: Run spread
run: spread

0 comments on commit 9de94ad

Please sign in to comment.