mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-05-12 13:30:39 +00:00
10 lines
No EOL
170 B
Bash
10 lines
No EOL
170 B
Bash
#!/bin/bash
|
|
|
|
# Fast fail the script on failures.
|
|
set -e
|
|
|
|
# Analyze the code.
|
|
dartanalyzer --strong --fatal-warnings .
|
|
|
|
# Test the entire test directory
|
|
pub run test test/ |