chore: stable version release #6
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: ci | |
# concurrency: | |
# group: ${{ github.workflow }}-${{ github.ref }} | |
# cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test-2_12: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '2.0.0' | |
channel: 'stable' | |
- run: ls -la | |
- run: cp analysis_options_2_12.yaml analysis_options.yaml | |
- run: make version get dry-run test | |
# runs the latest dart version supported by the package | |
test-latest: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
- run: ls -la | |
- run: make | |
# runs the latest dart version supported by the package | |
test-unstable: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: 'master' | |
- run: ls -la | |
- run: make upgrade all | |
# semantic_pull_request: | |
# uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/semantic_pull_request.yml@v1 | |
# spell-check: | |
# uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/spell_check.yml@v1 | |
# with: | |
# includes: "**/*.md" | |
# modified_files_only: false | |
# build: | |
# uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/dart_package.yml@v1 | |
# runs the oldest dart version supported by the package |