File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 76
76
cargo clippy -p c1minimal -- --deny=warnings
77
77
cargo clippy -p ledmatrix -- --deny=warnings
78
78
79
+ # fl16-inputmodules/src/serialnum.rs
80
+ # is currently used by all firmwares to show their firmware version.
81
+ # But it shows the version of the fl16-inputmodules package.
82
+ # So that needs to be the same as the firmware version.
83
+ - name : Check versions of all packages are the same
84
+ run : |
85
+ cargo pkgid -p fl16-inputmodules | cut -d "#" -f2 >> versions.tmp
86
+ cargo pkgid -p b1display | cut -d "#" -f2 >> versions.tmp
87
+ cargo pkgid -p c1minimal | cut -d "#" -f2 >> versions.tmp
88
+ cargo pkgid -p ledmatrix | cut -d "#" -f2 >> versions.tmp
89
+ uniq -c versions.tmp | [ $(wc -l) -eq 1 ]
90
+
79
91
formatting :
80
92
name : Formatting
81
93
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments