Skip to content

feat: Add GitHub Sponsor and Ko-Fi buttons #95

feat: Add GitHub Sponsor and Ko-Fi buttons

feat: Add GitHub Sponsor and Ko-Fi buttons #95

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Test and analyze code
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test-and-analyze:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Dart
uses: dart-lang/setup-dart@v1
- name: Install dependencies
run: dart pub get
- name: Analyze project source
run: dart analyze
# - name: Run tests
# run: dart test
- name: Perform a dry-run publish
run: dart pub publish --dry-run