. e test script for create release tag for autopublish: v4 #39
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 and test | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Dart SDK | |
uses: dart-lang/[email protected] | |
with: | |
sdk: stable | |
- name: Build and test | |
run: | | |
./bash/build_and_test.sh | |
shell: bash | |
- name: Check release tag | |
run: | | |
./bash/push_release.sh | |
shell: bash | |
# - name: Upload coverage to Codecov | |
# uses: codecov/codecov-action@v3 | |
# with: | |
# token: ${{ secrets.CODECOV_TOKEN }} | |
# file: coverage/lcov.info |