Skip to content

Commit

Permalink
Create cuckoo-pipeline.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
thermitex authored Jun 7, 2024
1 parent 1240e03 commit e03e645
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/cuckoo-pipeline.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit e03e645

Please sign in to comment.