Skip to content

Commit

Permalink
Update and rename ci.yaml.txt to ci.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Mastersam07 authored Jun 30, 2023
1 parent 5083844 commit d2d91d5
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 27 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI

on:
push:
branches: [master, dev]
pull_request:
branches: [master, dev]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: "stable"
- name: Fetch dependencies
run: flutter packages get
# - name: Analyze project
# run: flutter analyze
- name: Run tests
run: flutter test --coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
file: ./coverage/lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
27 changes: 0 additions & 27 deletions .github/workflows/ci.yaml.txt

This file was deleted.

0 comments on commit d2d91d5

Please sign in to comment.