forked from mriscoc/Ender3V2S1
-
-
Notifications
You must be signed in to change notification settings - Fork 19
81 lines (71 loc) · 1.86 KB
/
ci-unit-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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#
# ci-unit-tests.yml
# Build and execute unit tests to catch functional issues in code
#
name: CI - Unit Tests
on:
pull_request:
branches:
- 2024-December
paths-ignore:
- configurations/**
- display assets/**
- data/**
- docs/**
- docker/**
- slicer scripts/**
- test/**
- themes/**
- Marlin/tests/**
- '**/*.md'
push:
branches:
- 2024-December
paths-ignore:
- configurations/**
- display assets/**
- data/**
- docs/**
- docker/**
- slicer scripts/**
- test/**
- themes/**
- Marlin/tests/**
- '**/*.md'
jobs:
# This runs all unit tests as a single job. While it should be possible to break this up into
# multiple jobs, they currently run quickly and finish long before the compilation tests.
run_unit_tests:
name: Unit Test
# These tests will only be able to run on the bugfix-2.1.x branch, until the next release
# pulls them into additional branches.
if: github.repository == 'classicrocker883/MRiscoCProUI'
runs-on: ubuntu-latest
steps:
- name: Check out the PR
uses: actions/checkout@main
- name: Cache pip
uses: actions/cache@main
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Cache PlatformIO
uses: actions/cache@main
with:
path: ~/.platformio
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
- name: Select Python 3.11
uses: actions/setup-python@main
with:
python-version: '3.11'
architecture: 'x64'
- name: Install PlatformIO
run: |
pip install -U pip wheel platformio
pio upgrade --dev
pio pkg update --global
- name: Run All Unit Tests
run: |
make unit-test-all-local