🔖 release v0.4.2 #202
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
workflow_call: | |
defaults: | |
run: | |
shell: bash | |
env: | |
PUB_ENVIRONMENT: bot.github | |
permissions: read-all | |
jobs: | |
test: | |
name: "Test" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@v3 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:alfred_workflow;commands:codegen-test" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:alfred_workflow | |
os:ubuntu-latest;pub-cache-hosted;sdk:stable | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@v1 | |
with: | |
sdk: stable | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@v3 | |
- id: install | |
name: Install dependencies | |
run: dart pub get | |
- name: Run the build system for Dart code generation and modular compilation | |
run: dart run build_runner build --delete-conflicting-outputs | |
- name: Check the formatting of one or more Dart files | |
run: dart format lib test --output=none --set-exit-if-changed . | |
- name: Analyze the project's Dart code | |
run: dart analyze lib test --fatal-infos | |
- name: Install coverage dependencies | |
run: | | |
dart pub global activate coverage | |
dart pub global activate remove_from_coverage | |
- name: Collect and report coverage | |
run: | | |
dart pub global run coverage:test_with_coverage | |
dart pub global run remove_from_coverage:remove_from_coverage -f coverage/lcov.info -r '\.g\.dart$' | |
- name: Upload coverage | |
uses: codecov/codecov-action@v3 | |
with: | |
file: ./coverage/lcov.info | |
verbose: true |