Skip to content

Commit d37825d

Browse files
committed
ci: codeIssues >= R2023a
1 parent 8b16e66 commit d37825d

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

+stdlib/+legacy/private/file_attributes.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
assert(status == 1, "'%s' is not a file or directory.", p);
88

99
a = s;
10-
for n = {"GroupRead", "GroupWrite", "GroupExecute", "OtherRead", "OtherWrite", "OtherExecute"}
10+
for n = ["GroupRead", "GroupWrite", "GroupExecute", "OtherRead", "OtherWrite", "OtherExecute"]
1111
name = n{1};
1212

1313
if ~isfield(a, name) || isnan(a.(name))

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,11 @@ jobs:
8383
command: license('inuse'), stdlib.platform_tell()
8484

8585
- name: Check codeIssues
86-
if: ${{ matrix.release >= 'R2022b' }}
86+
if: ${{ matrix.release >= 'R2023a' }}
8787
uses: matlab-actions/run-build@v2
8888
with:
8989
tasks: check
90+
# R2022b has false positives that would break tests
9091

9192
- name: Main Tests
9293
uses: ./.github/workflows/composite-nomex

.github/workflows/composite-check/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@ runs:
77
steps:
88

99
- name: Check task
10-
if: ${{ matrix.release >= 'R2022b' }}
10+
if: ${{ matrix.release >= 'R2023a' }}
1111
uses: matlab-actions/run-build@v2
1212
with:
1313
startup-options: ${{ matrix.startup-options }}
1414
tasks: check
15+
# R2022b has false positives that would break tests
1516

1617
# - name: Upload CodeIssues
1718
# if: failure()

0 commit comments

Comments
 (0)