From a30ea5b2d6e56cc5dd5a34aecb386224ac1a9c80 Mon Sep 17 00:00:00 2001 From: fartem Date: Fri, 3 Feb 2023 08:11:52 +0300 Subject: [PATCH] 2023-02-02 update: integrated with GitHub Actions --- .github/workflows/dart.yml | 20 ++++++++++++++++++++ 1 file changed, 20 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..a4cc8dc --- /dev/null +++ b/.github/workflows/dart.yml @@ -0,0 +1,20 @@ +name: Dart + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: dart-lang/setup-dart@v1.0 + with: + sdk: 2.18.0 + - name: Install dependencies + run: dart pub get + - name: Run tests + run: dart test