Skip to content

Commit d24a6fc

Browse files
chore: move existing annotations into seperate package
Co-authored-by: MasterMarcoHD <MasterMarcoHD@users.noreply.github.com>
1 parent b5a16d8 commit d24a6fc

2 files changed

Lines changed: 34 additions & 0 deletions

File tree

.github/workflows/linting.yaml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Linting
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
lint:
13+
name: Lint Check
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- name: 📚 Checkout code
18+
uses: actions/checkout@v3
19+
20+
- name: 🐦 Set up Dart
21+
uses: dart-lang/setup-dart@v1
22+
with:
23+
sdk: stable
24+
25+
- name: 📦 Install dependencies
26+
run: dart pub get
27+
28+
- name: 🔍 Dart Analyze
29+
uses: ValentinVignal/action-dart-analyze@v0.17
30+
with:
31+
fail-on: format

pubspec.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ dependencies:
1111
custom_lint_builder: ^0.8.1
1212
analyzer: ^8.0.0
1313
analyzer_plugin: ^0.13.7
14+
grumpy_annotations:
15+
git:
16+
url: https://github.com/necodeIT/grumpy_annotations.git
1417

1518
dev_dependencies:
1619
lints: ^5.0.0

0 commit comments

Comments
 (0)