Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Encapsulateed authored Nov 2, 2024
1 parent f473102 commit f365eb0
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit f365eb0

Please sign in to comment.