Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FEA-317: Use github actions instead of travis for CI #164

Merged
merged 2 commits into from
Jun 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 59 additions & 0 deletions .github/workflows/dart_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Dart CI

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

jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
sdk: [ 2.13.4, stable, beta, dev ]
steps:
- uses: actions/checkout@v2
- uses: dart-lang/setup-dart@v0.2
with:
sdk: ${{ matrix.sdk }}

- id: install
name: Install dependencies
run: dart pub get

- name: Validate dependencies
run: dart run dependency_validator
if: always() && steps.install.outcome == 'success'

- name: Analyze project source
run: dart run dart_dev analyze
if: always() && steps.install.outcome == 'success'

- name: Run tests with ddc
run: dart run dart_dev test
if: always() && steps.install.outcome == 'success'

- name: Run tests with dart2js
run: dart run dart_dev test --release
if: always() && steps.install.outcome == 'success'

format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dart-lang/setup-dart@v0.2
with:
sdk: 2.13.4

- id: install
name: Install dependencies
run: dart pub get

- name: Verify formatting
run: dart run dart_dev format --check
if: always() && steps.install.outcome == 'success'
29 changes: 0 additions & 29 deletions .travis.yml

This file was deleted.

10 changes: 6 additions & 4 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ dependencies:

dev_dependencies:
build_runner: '>=1.7.1 <3.0.0'
build_test: ">=0.10.9 <2.0.0"
build_web_compilers: ^2.5.1
dart_dev: ^3.0.0
dart_style: ^1.3.1
build_test: ^2.1.3
build_vm_compilers: ^1.0.11
build_web_compilers: ^3.0.0
dart_dev: ^3.8.5
dart_style: ^2.1.1
dependency_validator: ^3.0.0
over_react: ">=3.12.0 <5.0.0"
test: ^1.15.7
13 changes: 13 additions & 0 deletions skynet.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: w_flux-unit-tests
description: Unit tests
contact: 'Frontend Frameworks Architecture / #support-frontend-architecture'
image: drydock.workiva.net/workiva/dart_unit_test_image:1
size: small
timeout: short

run:
on-tag: true
on-pull-request: true

scripts:
- echo "Tests run in github workflows"