Skip to content

Commit

Permalink
feat: Adding CI to both packages. #10
Browse files Browse the repository at this point in the history
  • Loading branch information
LuchoTurtle committed May 19, 2023
1 parent bc3574c commit 529ae14
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 2 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/dart.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Dart CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: macos-latest

steps:
- uses: actions/checkout@v3

# Installing Flutter because it's easier to generate .lcov files for test coverage
- name: Install Flutter
uses: subosito/flutter-action@v2

- name: Install dependencies
run: dart pub get

# Your project will need to have tests in test/ and a dependency on
# package:test for this step to succeed. Note that Flutter projects will
# want to change this to 'flutter test'.
- name: Run tests
run: flutter test --coverage

- uses: codecov/codecov-action@v2
with:
files: coverage/lcov.info
verbose: true # optional (default = false)
File renamed without changes.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@

# `statuses`

![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/dwyl/statuses/ci.yml?label=build&style=flat-square&branch=main)
![Elixir Build Status](https://img.shields.io/github/actions/workflow/status/dwyl/statuses/elixir.yml?label=Elixir&style=flat-square)
![Dart Build Status](https://img.shields.io/github/actions/workflow/status/dwyl/statuses/dart.yml?label=Dart&style=flat-square)
[![codecov.io](https://img.shields.io/codecov/c/github/dwyl/statuses/main.svg?style=flat-square)](http://codecov.io/github/dwyl/statuses?branch=main)
[![Hex.pm](https://img.shields.io/hexpm/v/statuses?color=brightgreen&style=flat-square)](https://hex.pm/packages/statuses)
[![pub package](https://img.shields.io/pub/v/statuses.svg?color=brightgreen&style=flat-square)](https://pub.dev/packages/statuses)
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat-square)](https://github.com/dwyl/statuses#contributing)
[![HitCount](http://hits.dwyl.com/dwyl/statuses.svg)](http://hits.dwyl.com/dwyl/statuses)

Expand Down Expand Up @@ -102,4 +104,4 @@ final statusesArray = Statuses.list()
```

Documentation available at:
[hexdocs.pm/statuses](https://hexdocs.pm/statuses)
[pub.dev/packages/statuses](https://pub.dev/packages/statuses)

0 comments on commit 529ae14

Please sign in to comment.