We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a1e106 commit 709c527Copy full SHA for 709c527
1 file changed
.github/workflows/check_float_tests.yml
@@ -0,0 +1,23 @@
1
+name: Check floating-point tests
2
+
3
+on:
4
+ push:
5
+ paths:
6
+ - .github/workflows/check_float_tests.yml
7
+ - tools/check_float_test_names.py
8
+ - src/rp2_common/pico_float/include/pico/float.h
9
+ - src/rp2_common/pico_double/include/pico/double.h
10
+ - test/pico_float_test/custom_float_funcs_test.c
11
+ - test/pico_float_test/custom_double_funcs_test.c
12
13
+jobs:
14
+ check-float-tests:
15
+ if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - name: Checkout
19
+ uses: actions/checkout@v4
20
21
+ - name: Check float tests
22
+ run: |
23
+ tools/check_float_test_names.py
0 commit comments