Skip to content

Commit

Permalink
Build CI-CD
Browse files Browse the repository at this point in the history
  • Loading branch information
phamquoctrongnta committed Jan 24, 2024
1 parent 85d421a commit e3cfeb2
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Run test
on: push
jobs:
build:
name: Run integration test
runs-on: macos-latest
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/setup-java@v4.0.0
with:
java-version: '17'
- uses: subosito/flutter-action@v2.12.0
with:
channel: 'stable'
- run: flutter pub get
- run: flutter pub run build_runner build --delete-conflicting-outputs
- run: flutter test integration_test
- run: flutter test

0 comments on commit e3cfeb2

Please sign in to comment.