Skip to content

Commit

Permalink
ci: refactor composite action (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanhanks-bestow authored Jan 28, 2024
1 parent bf84cb0 commit 9ffed7a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/actions/format/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: 'Dart Format'
description: 'Validate dart format conformance'
runs:
using: 'composite'
steps:
- run: echo "Step 1"
shell: bash
- run: echo noop
# - uses: actions/[email protected]
# - uses: dart-lang/setup-dart@v1
# - run: dart pub get
# - run: dart format --set-exit-if-changed .
1 change: 1 addition & 0 deletions .github/workflows/format.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- run: echo noop
- uses: ./.github/actions/format
# - uses: actions/[email protected]
# - uses: dart-lang/setup-dart@v1
# - run: dart pub get
Expand Down

0 comments on commit 9ffed7a

Please sign in to comment.