Skip to content
Open
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
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Flutter CI

on:
pull_request:
branches:
- main
paths-ignore:
- docs/**
- docs.json

push:
branches:
- main
paths-ignore:
- docs/**
- docs.json

# Cancel any in-progress runs of the same workflow for the same PR/branch.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
test:
uses: btwld/dart-actions/.github/workflows/ci.yml@main
with:
min_coverage: 80
10 changes: 10 additions & 0 deletions .github/workflows/pr-title_check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# .github/workflows/pr-title-check.yml.yml
name: "Pull Request Title Check"

on:
pull_request_target:
types: [opened, edited, synchronize]

jobs:
check-title:
uses: btwld/dart-actions/.github/workflows/pr-title-check.yml@main
42 changes: 0 additions & 42 deletions .github/workflows/pr.yml

This file was deleted.

15 changes: 15 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Publish to pub.dev

on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+*'
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
publish:
uses: btwld/dart-actions/.github/workflows/publish.yml@main
47 changes: 0 additions & 47 deletions .github/workflows/release-please.yml

This file was deleted.

45 changes: 0 additions & 45 deletions .github/workflows/release.yml

This file was deleted.

73 changes: 0 additions & 73 deletions .github/workflows/test.yaml

This file was deleted.

Loading
Loading