From f365eb0fc579d090b2c9c59c01e87c0db92a6578 Mon Sep 17 00:00:00 2001 From: Alexey Mitroshkin <69109441+Encapsulateed@users.noreply.github.com> Date: Sat, 2 Nov 2024 14:48:01 +0300 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..e6c6515 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,22 @@ +name: Lint + +on: + push: + +jobs: + Lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Set up Dart + uses: dart-lang/setup-dart@v1 + - name: Install dependencies + run: dart pub get + + + + - name: Verify Formatting + run: dart format --output=none --set-exit-if-changed . + + - name: Analyze Project Source + run: dart analyze