Skip to content

Commit

Permalink
Merge pull request #85 from Workiva/nnbd
Browse files Browse the repository at this point in the history
CPLAT-13894: Null safety (NNBD)
  • Loading branch information
rm-astro-wf authored Apr 8, 2021
2 parents 5898c12 + 51910d8 commit 2fef626
Show file tree
Hide file tree
Showing 8 changed files with 74 additions and 620 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/dart_ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Dart CI

on:
push:
branches:
- 'master'
- 'test_consume_*'
pull_request:
branches:
- '*'

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
sdk: [ stable, beta, dev ]
steps:
- uses: actions/checkout@v2
- uses: dart-lang/setup-dart@v1
with:
sdk: ${{ matrix.sdk }}
- name: Install dependencies
run: dart pub get
- name: Check formatting
run: dart format --output=none --set-exit-if-changed .
if: ${{ matrix.sdk == 'stable' }}
- name: Analyze project source
run: dart analyze
- name: Run tests
run: dart test
26 changes: 0 additions & 26 deletions .travis.yml

This file was deleted.

4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.0.0

- Stable null safe release.

## 1.3.0

- Add a `removeQueryParam()` method.
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM google/dart:2
WORKDIR /build/
ADD pubspec.yaml .
RUN pub get
RUN dart pub get
FROM scratch
Loading

0 comments on commit 2fef626

Please sign in to comment.