-
Notifications
You must be signed in to change notification settings - Fork 2
52 lines (45 loc) · 1.28 KB
/
test.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: Test
on:
push:
branches:
- '**'
schedule:
- cron: '0 0 * * MON'
concurrency:
group: '${{ github.ref }}'
cancel-in-progress: true
jobs:
test:
name: Test the module
runs-on: ubuntu-20.04
timeout-minutes: 5
steps:
- name: Prepare the virtual environment
uses: hausgold/actions/ci@master
with:
clone_token: '${{ secrets.CLONE_TOKEN }}'
settings_secret_key: '${{ secrets.SETTINGS_SECRET_KEY }}'
settings: '${{ github.repository }}'
target: ci/docker
- uses: actions/checkout@v3
- name: Install the module dependencies
run: make install
- name: Start the module dependencies
run: START=background make start reload
- name: Run the module tests
run: make test
build:
name: Build the module
runs-on: ubuntu-20.04
timeout-minutes: 5
steps:
- name: Prepare the virtual environment
uses: hausgold/actions/ci@master
with:
clone_token: '${{ secrets.CLONE_TOKEN }}'
settings_secret_key: '${{ secrets.SETTINGS_SECRET_KEY }}'
settings: '${{ github.repository }}'
target: ci/docker
- uses: actions/checkout@v3
- name: Build the module
run: make -C .github build