diff --git a/.github/workflows/cuckoo-pipeline.yml b/.github/workflows/cuckoo-pipeline.yml new file mode 100644 index 0000000..cd3fa7a --- /dev/null +++ b/.github/workflows/cuckoo-pipeline.yml @@ -0,0 +1,25 @@ +name: Cuckoo pipeline + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +permissions: + contents: read + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Clone repository + uses: actions/checkout@v4 + - name: Set up Flutter + uses: subosito/flutter-action@v2 + with: + channel: stable + flutter-version-file: pubspec.yaml # path to pubspec.yaml + - run: flutter --version + - run: flutter pub get + - run: flutter test