Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/run_pana.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Run PANA
on: [push, pull_request]

jobs:
package-analysis:
name: 'Run package analysis'
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v2
with:
submodules: true
- id: pana
uses: NikolayNIK/dart-package-analyzer@68258e9415cef73fe2ffe927b53fb958ab17ed96
with:
githubToken: ${{ secrets.GITHUB_TOKEN }}
- name: 'Check total package score'
if: ${{ steps.pana.total }} != ${{ steps.pana.total_max }}
run: exit 1
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# material_table_view


[![pub package](https://img.shields.io/pub/v/material_table_view.svg)](https://pub.dev/packages/material_table_view)
[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/NikolayNIK/material_table_view/blob/master/LICENSE)
[![Netlify Status](https://api.netlify.com/api/v1/badges/1e81dcb6-9a0d-4fa1-9f70-fca006e8f122/deploy-status)](https://app.netlify.com/sites/visionary-chimera-cb5753/deploys)
Expand Down