diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..dc9247b --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,17 @@ +name: flutter-test + +on: + push: + branches: + - main + +jobs: + test: + runs-on: macOS-latest + + steps: + - uses: actions/checkout@v4 + - uses: subosito/flutter-action@v2 + with: + channel: 'stable' + - run: flutter test \ No newline at end of file