Skip to content
This repository has been archived by the owner on Feb 16, 2025. It is now read-only.

Commit

Permalink
enable github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
aprosail committed May 10, 2024
2 parents e436b13 + 9373111 commit baf6c20
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: publish

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

jobs:
publish:
permissions: {id-token: write}
uses: aprosail/templates/.github/workflows/dart-publish.yaml@main
8 changes: 8 additions & 0 deletions .github/workflows/review.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: review

on:
push: {branches: ["main", "dev"]}
pull_request: {branches: ["main", "dev"]}

jobs:
review: {uses: aprosail/templates/.github/workflows/dart-review.yaml@main}
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@

Terminal colorization and text style decoration for Dart:
This package is an encapsulation of the terminal escape code,
refer to the standard: ANSI X3.64, ECMA-48, or ISO 6429.

refer to the standard: `ANSI X3.64`, `ECMA-48`, or `ISO 6429`.
Thanks to Dart's extension mechanism, you can use it like this:

```dart
Expand Down

0 comments on commit baf6c20

Please sign in to comment.