From 73f6c991abc51d3e1548deb471a85c573d6efa7d Mon Sep 17 00:00:00 2001 From: Sonu Sharma Date: Sun, 1 Mar 2020 16:31:57 +0530 Subject: [PATCH] Create dart.yml --- .github/workflows/dart.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/dart.yml diff --git a/.github/workflows/dart.yml b/.github/workflows/dart.yml new file mode 100644 index 0000000..b4f8b80 --- /dev/null +++ b/.github/workflows/dart.yml @@ -0,0 +1,19 @@ +name: Dart CI + +on: [push] + +jobs: + build-and-test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: actions/setup-java@v1 + with: + java-version: '12.x' + - uses: subosito/flutter-action@v1 + with: + channel: 'stable' + # Get flutter packages + - run: flutter pub get + # Build :D + - run: flutter build aot