419 migrate to dart null safety mode #1332
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: Dart CI | |
on: | |
pull_request: | |
types: [ opened, synchronize, reopened, ready_for_review ] | |
jobs: | |
run_unit_tests: | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Setup Dart SDK Step 1 | |
run: sudo apt-get update | |
- name: Setup Dart SDK Step 2 | |
run: sudo apt-get install apt-transport-https | |
- name: Setup Dart SDK Step 3 | |
run: sudo sh -c 'wget -qO- https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -' | |
- name: Setup Dart SDK Step 4 | |
run: sudo sh -c 'wget -qO- https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_stable.list > /etc/apt/sources.list.d/dart_stable.list' | |
- name: Setup Dart SDK Step 5 | |
run: wget -O /tmp/dart_2.19.6-1_amd64.deb https://storage.googleapis.com/dart-archive/channels/stable/release/2.19.6/linux_packages/dart_2.19.6-1_amd64.deb | |
- name: Setup Dart SDK Step 6 | |
run: sudo apt install /tmp/dart_2.19.6-1_amd64.deb | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: PATH="$PATH:/usr/lib/dart/bin" dart pub get | |
- name: Run tests | |
run: PATH="$PATH:/usr/lib/dart/bin" dart build_runner test | |
fail_if_pull_request_is_draft: | |
if: github.event.pull_request.draft == true | |
runs-on: ubuntu-18.04 | |
steps: | |
- name: Fails in order to indicate that pull request needs to be marked as ready to review and unit tests workflow needs to pass. | |
run: exit 1 |