Skip to content

Commit

Permalink
👷 Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
schaerfo committed Oct 8, 2023
1 parent e308c07 commit 740b209
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build

on:
push:
branches: [ '*' ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.10.x'
channel: 'stable'
cache: true

- name: Check Flutter version
run: flutter --version

- name: Install dependencies
run: flutter 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 740b209

Please sign in to comment.