-
Notifications
You must be signed in to change notification settings - Fork 2
60 lines (50 loc) · 1.24 KB
/
integration_tests.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
53
54
55
56
57
58
59
60
name: CI
permissions:
checks: write
on:
workflow_dispatch:
push:
branches: [ "master" ]
paths:
- "logisim/**"
- "cocas/**"
- "cocoemu/**"
- "tests/**"
pull_request:
branches: [ "master" ]
paths:
- "logisim/**"
- "cocas/**"
- "cocoemu/**"
- "tests/**"
jobs:
test:
name: Integration tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'oracle'
java-version: '17'
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install package and dependencies
run: pip install ruff pytest strictyaml -e .
- name: Prepare test environment
run: make prepare_tests
- name: Test with pytest
run: pytest --tb=no -rA -v --junitxml tests/results/result.xml
- name: Test Report
uses: dorny/test-reporter@v1
if: always()
with:
name: Test Results
path: tests/results/result.xml
reporter: java-junit