-
-
Notifications
You must be signed in to change notification settings - Fork 704
49 lines (46 loc) · 1.09 KB
/
docker-test.yaml
File metadata and controls
49 lines (46 loc) · 1.09 KB
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
name: Run Unit Tests
on:
push:
branches:
- master
paths:
- '**/**'
- '!.editorconfig'
- '!README.md'
- '!CONTRIBUTING.md'
- '!webview/**'
- '!website/**'
- '!.github/workflows/build-webview.yaml'
- '!.github/workflows/build-balena-disk-image.yaml'
- '!.github/release.yml'
- '!.github/dependabot.yml'
- '!docs/**'
- '!.cursor/**'
pull_request:
branches:
- master
paths:
- '**/**'
- '!.editorconfig'
- '!README.md'
- '!CONTRIBUTING.md'
- '!webview/**'
- '!website/**'
- '!.github/workflows/build-webview.yaml'
- '!.github/workflows/build-balena-disk-image.yaml'
- '!.github/release.yml'
- '!.github/dependabot.yml'
- '!docs/**'
- '!.cursor/**'
workflow_call:
jobs:
run-typescript-tests:
uses: ./.github/workflows/test-runner.yml
with:
test-type: 'typescript'
python-version: '3.11'
run-python-tests:
uses: ./.github/workflows/test-runner.yml
with:
test-type: 'python'
python-version: '3.11'