Skip to content

Commit

Permalink
ci: added some extra steps for validations
Browse files Browse the repository at this point in the history
  • Loading branch information
SlayerOrnstein committed Jan 28, 2024
1 parent 9032f73 commit 2e502ed
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 5 deletions.
25 changes: 25 additions & 0 deletions .github/cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"version": "0.2",
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
"dictionaries": [
"vgv_allowed",
"vgv_forbidden"
],
"dictionaryDefinitions": [
{
"name": "vgv_allowed",
"path": "https://raw.githubusercontent.com/verygoodopensource/very_good_dictionaries/main/allowed.txt",
"description": "Allowed VGV Spellings"
},
{
"name": "vgv_forbidden",
"path": "https://raw.githubusercontent.com/verygoodopensource/very_good_dictionaries/main/forbidden.txt",
"description": "Forbidden VGV Spellings"
}
],
"useGitignore": true,
"words": [
"warframestat_client",
"Warframe"
]
}
14 changes: 9 additions & 5 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: ci

concurrency:
group: $-$
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
Expand All @@ -16,9 +16,13 @@ jobs:
semantic_pull_request:
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/semantic_pull_request.yml@v1

test:
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
with:
setup: ./test/scripts/update_fixtures.sh
coverage_excludes: "*.g.dart"
min_coverage: 40
min_coverage: 25

0 comments on commit 2e502ed

Please sign in to comment.