From ac1af0e0aa4092cf54f217ab49f9c1060317eaa6 Mon Sep 17 00:00:00 2001 From: Koji Wakamiya Date: Fri, 12 Dec 2025 11:53:18 +0900 Subject: [PATCH] chore: test workflow --- .github/workflows/test.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/test.yaml diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml new file mode 100644 index 0000000..dcbf24a --- /dev/null +++ b/.github/workflows/test.yaml @@ -0,0 +1,22 @@ +name: Flutter Tests + +on: + push: + branches: + - main + pull_request: + +jobs: + unit_tests: + runs-on: ubuntu-latest + timeout-minutes: 10 + permissions: + contents: read + steps: + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 + - uses: subosito/flutter-action@fd55f4c5af5b953cc57a2be44cb082c8f6635e8e # v2.21.0 + with: + channel: stable + cache: true + - name: Run Flutter Unit Tests + run: flutter test