Skip to content

Commit

Permalink
Moving from Travis to GitHub Actions (#267)
Browse files Browse the repository at this point in the history
* Add Github Actions and Modify Badge in README.md

* Remove Caching action

* Update .github/workflows/test.yml

* [ci:gha] Add newline at the end

Co-authored-by: Dinesh Ahuja <[email protected]>
  • Loading branch information
davidlutta and devkabiir authored Nov 25, 2020
1 parent 8d42f89 commit 5a4b784
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 26 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Test

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest

container:
image: google/dart:latest

steps:
- uses: actions/checkout@v2

- name: Install dependencies
run: pub get

- name: Check Stage formatting
run: pub run bin/check_formatting.dart

- name: Run tests
run: pub run test
25 changes: 0 additions & 25 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Exercism Dart Track

![build status](https://travis-ci.org/exercism/dart.svg?branch=master) [![Gitter](https://badges.gitter.im/exercism/dart.svg)](https://gitter.im/exercism/dart?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
![build status](https://github.com/exercism/dart/workflows/actions/badge.svg)](https://github.com/exercism/dart/actions) [![Gitter](https://badges.gitter.im/exercism/dart.svg)](https://gitter.im/exercism/dart?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)

Exercism exercises in Dart.

Expand Down

0 comments on commit 5a4b784

Please sign in to comment.