|
1 |
| -name: langsync |
2 |
| - |
3 |
| -concurrency: |
4 |
| - group: ${{ github.workflow }}-${{ github.ref }} |
5 |
| - cancel-in-progress: true |
6 |
| - |
7 |
| -on: |
8 |
| - pull_request: |
9 |
| - paths: |
10 |
| - - ".github/workflows/langsync.yaml" |
11 |
| - - "lib/**" |
12 |
| - - "test/**" |
13 |
| - - "pubspec.yaml" |
14 |
| - push: |
15 |
| - branches: |
16 |
| - - main |
17 |
| - paths: |
18 |
| - - ".github/workflows/langsync.yaml" |
19 |
| - - "lib/**" |
20 |
| - - "test/**" |
21 |
| - - "pubspec.yaml" |
22 |
| - |
23 |
| -jobs: |
24 |
| - semantic-pull-request: |
25 |
| - uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/semantic_pull_request.yml@v1 |
26 |
| - |
27 |
| - build: |
28 |
| - uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/dart_package.yml@v1 |
29 |
| - |
30 |
| - spell-check: |
31 |
| - uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/spell_check.yml@v1 |
32 |
| - with: |
33 |
| - includes: | |
34 |
| - **/*.md |
35 |
| - !brick/**/*.md |
36 |
| - .*/**/*.md |
37 |
| - modified_files_only: false |
38 |
| - |
39 |
| - verify-version: |
40 |
| - runs-on: ubuntu-latest |
41 |
| - steps: |
42 |
| - - name: 📚 Git Checkout |
43 |
| - uses: actions/checkout@v2 |
44 |
| - |
45 |
| - - name: 🎯 Setup Dart |
46 |
| - uses: dart-lang/setup-dart@v1 |
47 |
| - with: |
48 |
| - sdk: "stable" |
49 |
| - |
50 |
| - - name: 📦 Install Dependencies |
51 |
| - run: | |
52 |
| - dart pub get |
53 |
| -
|
54 |
| - - name: 🔎 Verify version |
55 |
| - run: dart run test --run-skipped -t version-verify |
| 1 | +# name: langsync |
| 2 | + |
| 3 | +# concurrency: |
| 4 | +# group: ${{ github.workflow }}-${{ github.ref }} |
| 5 | +# cancel-in-progress: true |
| 6 | + |
| 7 | +# on: |
| 8 | +# pull_request: |
| 9 | +# paths: |
| 10 | +# - ".github/workflows/langsync.yaml" |
| 11 | +# - "lib/**" |
| 12 | +# - "test/**" |
| 13 | +# - "pubspec.yaml" |
| 14 | +# push: |
| 15 | +# branches: |
| 16 | +# - main |
| 17 | +# paths: |
| 18 | +# - ".github/workflows/langsync.yaml" |
| 19 | +# - "lib/**" |
| 20 | +# - "test/**" |
| 21 | +# - "pubspec.yaml" |
| 22 | + |
| 23 | +# jobs: |
| 24 | +# semantic-pull-request: |
| 25 | +# uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/semantic_pull_request.yml@v1 |
| 26 | + |
| 27 | +# build: |
| 28 | +# uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/dart_package.yml@v1 |
| 29 | + |
| 30 | +# spell-check: |
| 31 | +# uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/spell_check.yml@v1 |
| 32 | +# with: |
| 33 | +# includes: | |
| 34 | +# **/*.md |
| 35 | +# !brick/**/*.md |
| 36 | +# .*/**/*.md |
| 37 | +# modified_files_only: false |
| 38 | + |
| 39 | +# verify-version: |
| 40 | +# runs-on: ubuntu-latest |
| 41 | +# steps: |
| 42 | +# - name: 📚 Git Checkout |
| 43 | +# uses: actions/checkout@v2 |
| 44 | + |
| 45 | +# - name: 🎯 Setup Dart |
| 46 | +# uses: dart-lang/setup-dart@v1 |
| 47 | +# with: |
| 48 | +# sdk: "stable" |
| 49 | + |
| 50 | +# - name: 📦 Install Dependencies |
| 51 | +# run: | |
| 52 | +# dart pub get |
| 53 | + |
| 54 | +# - name: 🔎 Verify version |
| 55 | +# run: dart run test --run-skipped -t version-verify |
56 | 56 |
|
0 commit comments