Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion build-system/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,12 @@ runs:
[ -d .nerves ] || (echo "VERSION file needs to be bumped or a config file needs to change to force a build"; exit 1)
- name: Lint
shell: bash
run: mix nerves.system.lint nerves_defconfig
run: |
if mix help nerves.system.lint >/dev/null 2>&1; then
mix nerves.system.lint nerves_defconfig
else
echo "nerves.system.lint command not available, skipping lint step"
fi
- name: Create artifacts
shell: bash
run: |
Expand Down