Skip to content

Commit 9addea7

Browse files
committed
Fix CI
1 parent d53bf6f commit 9addea7

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.clang-tidy

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Checks: >-
2121
-misc-non-private-member-variables-in-classes,
2222
-readability-function-cognitive-complexity,
2323
-readability-magic-numbers,
24+
-misc-include-cleaner,
2425
WarningsAsErrors: ''
2526
HeaderFileExtensions:
2627
- ''

.github/workflows/test-mac.yml

+5
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ on:
1212
jobs:
1313
tests:
1414
runs-on: macos-latest
15+
16+
# strategy:
17+
# matrix:
18+
# build_type: [Release, Debug]
19+
1520
steps:
1621
- name: Checkout
1722
uses: actions/checkout@v3

Argo/StdModule.cc

-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ module;
22

33
// TODO(gen740): need to replace std
44
// Declare all stds in this file
5-
// NOLINTBEGIN(misc-include-cleaner)
65
#include <unistd.h>
76

87
#include <array>
@@ -22,7 +21,6 @@ module;
2221
#include <tuple>
2322
#include <utility>
2423
#include <vector>
25-
// NOLINTEND(misc-include-cleaner)
2624

2725
export module Argo:std_module;
2826

0 commit comments

Comments
 (0)