fxied dart build yml #12
Workflow file for this run
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: build | |
on: | |
push: | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
publish: | |
environment: ${{ inputs.environment }} | |
permissions: | |
id-token: write | |
runs-on: ubuntu-latest | |
container: | |
image: google/dart:latest | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@v4 | |
- name: 'Setup Dart' | |
uses: dart-lang/[email protected] | |
- name: 'Get Packages' | |
run: pub get | |
- name: 'Run tests' | |
run: pub run test | |
- name: 'Dry Run Publishing' | |
run: dart pub publish --dry-run | |
- name: 'Publish Artifact' | |
run: dart pub publish --force | |
# Replace %PROJECT_NAME% to the real project name | |
# - name: Activate coverage package | |
# run: pub global activate coverage | |
# - name: Collect coverage in json | |
# run: dart --disable-service-auth-codes --enable-vm-service=8111 --pause-isolates-on-exit test/%PROJECT_NAME%_test.dart & nohup pub global run coverage:collect_coverage --port=8111 --out=coverage.json --wait-paused --resume-isolates | |
# - name: Convert coverage to lcov | |
# run: pub global run coverage:format_coverage --lcov --in=coverage.json --out=lcov.info --packages=.packages --report-on=lib | |
# - name: Upload coverage to Codecov | |
# uses: codecov/[email protected] | |
# with: | |
# token: ${{ secrets.CODECOV_TOKEN }} | |
# flags: unittests | |
# file: ./lcov.info | |
# name: codecov-%PROJECT_NAME% |