Skip to content

Commit

Permalink
Introduce geotypes (#176)
Browse files Browse the repository at this point in the history
* introduce geotypes

* removed build runner from workflows
  • Loading branch information
jsiedentop authored Feb 29, 2024
1 parent abc17f5 commit 1508f6c
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 902 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/dart-pub-publish-on-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,5 @@ jobs:
run: dart analyze
if: always()

- name: Run build_runner
run: dart run build_runner build --delete-conflicting-outputs
if: always()

- name: Preview publish package (dry-run)
run: dart pub publish --dry-run
4 changes: 0 additions & 4 deletions .github/workflows/dart-pub-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ jobs:
- name: Analyze project source
run: dart analyze
if: always()

- name: Run build_runner
run: dart run build_runner build --delete-conflicting-outputs
if: always()

- name: Setup credentials
env:
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/dart-unit-tests-on-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@ jobs:
run: dart analyze
if: always()

- name: Run build_runner
run: dart run build_runner build --delete-conflicting-outputs
if: always()

- name: Run tests with coverage enabled
run: dart test --coverage=./coverage
if: always()
Expand Down
13 changes: 2 additions & 11 deletions .github/workflows/dart-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,13 @@ on:

jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
sdk: [stable]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- uses: dart-lang/setup-dart@v1
with:
sdk: ${{ matrix.sdk }}
sdk: stable

- name: Print Dart SDK version
run: dart --version
Expand All @@ -32,10 +27,6 @@ jobs:
run: dart analyze
if: always()

- name: Run build_runner
run: dart run build_runner build --delete-conflicting-outputs
if: always()

- name: Run tests
run: dart test
if: always()
Loading

0 comments on commit 1508f6c

Please sign in to comment.