Browse Source

creating dart CI action

(ie. playing around with github actions)
remove-cryptography-dependency
Herbert Poul 5 years ago committed by GitHub
parent
commit
42850d1d55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 18
      .github/workflows/dart.yml

18
.github/workflows/dart.yml

@ -0,0 +1,18 @@
name: Dart CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
container:
image: google/dart:latest
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: pub get
- name: Run tests
run: pub run test
Loading…
Cancel
Save