mirror of
https://github.com/hackku21/nearby_connections.git
synced 2026-03-02 03:49:22 +00:00
Add github actions (#28)
This commit is contained in:
27
.github/workflows/flutter.yml
vendored
Normal file
27
.github/workflows/flutter.yml
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
name: Flutter CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: subosito/flutter-action@v1
|
||||
with:
|
||||
channel: 'beta'
|
||||
|
||||
# Get flutter dependencies.
|
||||
- run: flutter packages get
|
||||
|
||||
# Check for any formatting issues in the code.
|
||||
- run: flutter format --set-exit-if-changed .
|
||||
|
||||
# Statically analyze the Dart code for any errors.
|
||||
- run: flutter analyze .
|
||||
Reference in New Issue
Block a user