From df7ab1fd7fb9c6b2cfda9fa032365fe77f3672ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Wr=C3=B3blewski?= Date: Fri, 8 Nov 2024 19:53:57 +0100 Subject: [PATCH] chore: adapt GH actions, add CODEOWNERS --- .github/CODEOWNERS | 1 + .github/workflows/lint-and-test-pr.yml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..0ca482f --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @wrbl606 \ No newline at end of file diff --git a/.github/workflows/lint-and-test-pr.yml b/.github/workflows/lint-and-test-pr.yml index 6a79c0f..6a893d5 100644 --- a/.github/workflows/lint-and-test-pr.yml +++ b/.github/workflows/lint-and-test-pr.yml @@ -19,6 +19,6 @@ jobs: - run: flutter pub get - run: flutter pub run build_runner build - - run: dart format --set-exit-if-changed lib test example/lib example/integration_test - - run: flutter analyze lib test example/lib example/integration_test + - run: dart format --set-exit-if-changed lib test example/lib + - run: flutter analyze lib test example/lib - run: flutter test