Add slider to wordcount setting #32
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/iyox-studios/flutter_rust | |
volumes: | |
- ${{ GITHUB.WORKSPACE }}:/root/wormhole | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Lint | |
run: | | |
make lint | |
build_android: | |
name: Build Android | |
needs: lint | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/iyox-studios/flutter_rust | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build Android | |
run: | | |
make get-dep | |
make apk | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: android | |
path: | | |
build/app/outputs/flutter-apk/*.apk | |
build/app/outputs/bundle/*.aab | |
build_linux: | |
name: Build Linux | |
needs: lint | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/iyox-studios/flutter_rust | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build Linux | |
run: | | |
export HOME=/root/ | |
make get-dep | |
make linux | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: linux | |
path: | | |
build/linux/x64/release/bundle/ |