Skip to content

Commit 6aba38f

Browse files
authored
Merge pull request #134 from eringerli/actions-reorder
reordered the actions, so clang-format and doxygen are run first
2 parents 60f4996 + 2b9bfda commit 6aba38f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

example_actions.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@ jobs:
1616
repository: adafruit/ci-arduino
1717
path: ci
1818

19-
- name: pre-install
19+
- name: Install the prerequisites
2020
run: bash ci/actions_install.sh
2121

22-
- name: test platforms
23-
run: python3 ci/build_platform.py main_platforms
24-
25-
- name: clang
26-
run: python3 ci/run-clang-format.py -e "ci/*" -e "bin/*" -r .
22+
- name: Check for correct code formatting with clang-format
23+
run: python3 ci/run-clang-format.py -e "ci/*" -e "bin/*" -r .
2724

28-
- name: doxygen
25+
- name: Check for correct documentation with doxygen
2926
env:
3027
GH_REPO_TOKEN: ${{ secrets.GH_REPO_TOKEN }}
3128
PRETTYNAME : "Adafruit Arduino Library"
3229
run: bash ci/doxy_gen_and_deploy.sh
30+
31+
- name: Test the code on supported platforms
32+
run: python3 ci/build_platform.py main_platforms

0 commit comments

Comments
 (0)