Skip to content

Commit

Permalink
Merge pull request #164 from Workiva/FEA-317_UseGithubActions
Browse files Browse the repository at this point in the history
FEA-317: Use github actions instead of travis for CI
  • Loading branch information
rmconsole5-wk authored Jun 16, 2022
2 parents dfcbd84 + 209174d commit 2033aa5
Show file tree
Hide file tree
Showing 4 changed files with 78 additions and 33 deletions.
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"

0 comments on commit 2033aa5

Please sign in to comment.