Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Separate format check and analyzer code into new actions #604

Merged
merged 2 commits into from
Dec 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions .github/workflows/analyze-code.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Analyze Code

on:
pull_request:
paths:
- '.github/workflows/test.yml'
- 'bin/*.dart'
- 'exercises/**/*.dart'
- 'exercises/**/analysis_options.yaml'
- 'exercises/**/pubspec.yaml'
- 'lib/*.dart'
- 'lib/src/*.dart'
- 'test/*.dart'
- 'analysis_options.yaml'
- 'pubspec.*'

jobs:
test:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
tag: ['3.2']

container:
image: dart:${{ matrix.tag }}

steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683

- name: Install dependencies
run: dart pub get

# We can't check the exercises because they will produce errors since the example files have the solution.
- name: Analyze Dart code
run: dart analyze bin/ lib/ test/
36 changes: 36 additions & 0 deletions .github/workflows/format-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Check Formatting

on:
pull_request:
paths:
- '.github/workflows/test.yml'
- 'bin/*.dart'
- 'exercises/**/*.dart'
- 'exercises/**/analysis_options.yaml'
- 'exercises/**/pubspec.yaml'
- 'lib/*.dart'
- 'lib/src/*.dart'
- 'test/*.dart'
- 'analysis_options.yaml'
- 'pubspec.*'

jobs:
test:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
tag: ['3.2']

container:
image: dart:${{ matrix.tag }}

steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683

- name: Install dependencies
run: dart pub get

- name: Check Stage formatting
run: dart run bin/check_formatting.dart

9 changes: 1 addition & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test
name: Run Tests

on:
pull_request:
Expand Down Expand Up @@ -31,12 +31,5 @@ jobs:
- name: Install dependencies
run: dart pub get

- name: Check Stage formatting
run: dart run bin/check_formatting.dart

# We can't check the exercises because they will produce errors since the example files have the solution.
- name: Analyze Dart code
run: dart analyze bin/ lib/ test/

- name: Run tests
run: dart test