forked from qld-gov-au/ckanext-datarequests
-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (44 loc) · 1.09 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: Tests
on:
push:
pull_request:
branches:
- master
jobs:
test:
strategy:
fail-fast: false
matrix:
# Disable 2.9 tests
# ckan-version: ["2.10", 2.9, 2.9-py2]
ckan-version: ["2.10"]
name: Test on CKAN ${{ matrix.ckan-version }}
runs-on: ubuntu-latest
container: drevops/ci-builder:23.7.0
env:
CKAN_VERSION: ${{ matrix.ckan-version }}
steps:
- uses: actions/checkout@v3
timeout-minutes: 2
- name: Build
run: bin/build.sh
timeout-minutes: 15
- name: Test
run: bin/test.sh
timeout-minutes: 20
- name: Retrieve logs
if: always()
run: ahoy logs
timeout-minutes: 5
- name: Retrieve screenshots
if: failure()
run: bin/process-artifacts.sh
timeout-minutes: 1
- name: Upload screenshots
if: failure()
uses: actions/upload-artifact@v3
with:
name: CKAN ${{ matrix.ckan-version }} screenshots
path: /tmp/artifacts/behave/screenshots
timeout-minutes: 1