diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 633c695c..47559e46 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -28,13 +28,14 @@ jobs: - run: flutter config --enable-linux-desktop - run: flutter --version + - name: Run tests + run: flutter test + - name: Install ykman - run: | - ./build-ykman.sh + run: ./build-ykman.sh - name: Build the app - run: | - flutter build linux + run: flutter build linux - name: Rename and archive app run: | diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index d6eda626..be2d3040 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -28,13 +28,14 @@ jobs: - run: flutter config --enable-macos-desktop - run: flutter --version + - name: Run tests + run: flutter test + - name: Install ykman - run: | - ./build-ykman.sh + run: ./build-ykman.sh - name: Build the app - run: | - flutter build macos + run: flutter build macos - name: Rename and archive app bundle run: | diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 3fbe6d5b..5f2eda84 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -27,13 +27,14 @@ jobs: - run: flutter config --enable-windows-desktop - run: flutter --version + - name: Run tests + run: flutter test + - name: Install ykman - run: | - .\build-ykman.bat + run: .\build-ykman.bat - name: Build the app - run: | - flutter build windows + run: flutter build windows - name: Rename and archive app bundle run: |