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: jobs:
build: build:
name: Continuous Integration uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/flutter_package.yml@v1
runs-on: ubuntu-latest with:
steps: flutter_channel: stable
- uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/flutter_package.yml@v1 flutter_version: 2.10.5
with: coverage_excludes: "lib/gen/*.dart"
flutter_channel: stable test_optimization: false
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

@ -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