diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 064f8f484b..9600a3ff9d 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -71,7 +71,7 @@ jobs: run: dart pub get - name: ${{ matrix.job }} if: runner.os != 'Windows' - run: ./tool/travis.sh + run: ./tool/ci.sh env: DARTDOC_BOT: ${{ matrix.job }} #COVERAGE_TOKEN: true # this needs to be set to enable coverage diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 42ea2065bb..da79505d35 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -24,7 +24,7 @@ yet in the issue tracker, start by opening an issue. Thanks! 2. When a change is user-facing, please add a new entry to the [changelog](https://github.com/dart-lang/dartdoc/blob/master/CHANGELOG.md) 3. Please include a test for your change. `dartdoc` has both `package:test`-style unittests as well as integration tests. To run the unittests, use `grind test`. 4. For major changes, run `grind compare-sdk-warnings` and `grind compare-flutter-warnings`, and include the summary results in your pull request. -5. Be sure to format your Dart code using `dart format`, otherwise travis will complain. +5. Be sure to format your Dart code using `dart format`, otherwise our CI will complain. 6. Use `grind presubmit` before creating a pull request to quickly check for common problems. 7. Post your change via a pull request for review and integration! diff --git a/tool/travis.sh b/tool/ci.sh similarity index 100% rename from tool/travis.sh rename to tool/ci.sh