revert main and add spell check as a different flow

pull/399/head
Tom Arra 3 years ago
parent 6e566666fb
commit fa00283a6d

@ -8,17 +8,10 @@ on: [pull_request, push]
jobs:
build:
name: Continuous Integration
runs-on: ubuntu-latest
steps:
- uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/flutter_package.yml@v1
with:
flutter_channel: stable
flutter_version: 2.10.5
coverage_excludes: "lib/gen/*.dart"
test_optimization: false
- name: Check spelling
uses: zwaldowski/cspell-action@v1
with:
paths: "**/*.{md,html}"
config: .vscode/cspell.json
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/flutter_package.yml@v1
with:
flutter_channel: stable
flutter_version: 2.10.5
coverage_excludes: "lib/gen/*.dart"
test_optimization: false

@ -0,0 +1,18 @@
name: spell_check
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on: [pull_request, push]
jobs:
build:
name: Continuous Integration
runs-on: ubuntu-latest
steps:
- name: Check spelling
uses: zwaldowski/cspell-action@v1
with:
paths: "**/*.{md,html}"
config: .vscode/cspell.json
Loading…
Cancel
Save