We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7b2009 commit 914275fCopy full SHA for 914275f
1 file changed
action.yml
@@ -1,3 +1,13 @@
1
name: "Setup Codee Analyzer & Formatter"
2
description: "Setup Codee Analyzer & Formatter"
3
author: "Igor S. Gerasimov"
4
+
5
+runs:
6
+ using: composite
7
+ steps:
8
+ - name: Check platform compability
9
+ if: ${{ !(runner.os == 'Windows' && runner.arch == 'X64') || (runner.os == 'Linux' && (runner.arch == 'X64' || runner.arch == 'ARM64')) }}
10
+ shell: bash
11
+ run: |
12
+ echo "Not supported combination of OS & Arch: ${{ runner.os }} & ${{ runner.arch }}"
13
+ exit 1
0 commit comments