-
Notifications
You must be signed in to change notification settings - Fork 5
33 lines (31 loc) · 1022 Bytes
/
integration.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
##==================================================================================================
## KIWAKU - Containers Well Made
## Copyright : KIWAKU Contributors & Maintainers
## SPDX-License-Identifier: BSL-1.0
##==================================================================================================
name: Kiwaku - Integration Tests
on:
pull_request:
branches:
- main
concurrency:
group: integrtion-${{ github.ref }}
cancel-in-progress: true
jobs:
integration:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
cfg:
- {test: Installation , mode: 0 }
- {test: FetchContents , mode: 1 }
- {test: CPM , mode: 2 }
steps:
- name: Fetch current branch
uses: actions/checkout@v4
- name: Check KIWAKU works with ${{ matrix.cfg.test }}
uses: ./.github/actions/integration
with:
branch: '${{ github.head_ref }}'
mode: '${{ matrix.cfg.mode }}'