Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Add static analysis workflow #362

Merged
merged 2 commits into from
Nov 25, 2023
Merged
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
54 changes: 54 additions & 0 deletions .github/workflows/static_analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: static_analysis
# Runs the workflow on the below events:
# 1. on pull request raised to trunk branch.
# 2. on push event to trunk branch.
on:
push:
branches:
- trunk
pull_request:
branches:
- trunk

permissions: # added using https://github.com/step-security/secure-workflows
contents: read

jobs:
static_analysis:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
package:
- at_cli
- at_cram
- at_dump_atKeys
- at_hive_recovery
- at_pkam
- at_repl
- at_ve_doctor

steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d # v1.6.0
with:
sdk: stable
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: 'stable'
cache-dependency-path: tools/osv-scanner/go.sum

- name: Install dependencies and analyze in ${{ matrix.package }}
working-directory: packages/${{ matrix.package }}
run: |
dart pub get
dart analyze

# Runs osv-scanner to find any vulnerable Dart dependencies
# It needs to look at pubspec.lock files, which is why it's
# placed here, as the `dart pub get` above will create them
- name: Run osv-scanner
working-directory: packages/${{ matrix.package }}
run: |
go install github.com/google/osv-scanner/cmd/osv-scanner@6316373e47d7e3e4b4fd3630c4bbc10987738de6 # v1.4.3
osv-scanner --lockfile=./pubspec.lock
2 changes: 1 addition & 1 deletion packages/at_dump_atKeys/lib/commandline_parser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class CommandLineParser {
ArgResults getParserResults(List<String> arguments, ArgParser parser) {
var results;
try {
if (arguments != null && arguments.isNotEmpty) {
if (arguments.isNotEmpty) {
results = parser.parse(arguments);
if (results.options.length != parser.options.length) {
throw ArgParserException('Invalid Arguments \n' + parser.usage);
Expand Down
2 changes: 1 addition & 1 deletion packages/at_pkam/lib/commandline_parser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class CommandLineParser {
ArgResults getParserResults(List<String> arguments, ArgParser parser) {
var results;
try {
if (arguments != null && arguments.isNotEmpty) {
if (arguments.isNotEmpty) {
results = parser.parse(arguments);
if (results.options.length != parser.options.length) {
throw ArgParserException('Invalid Arguments \n' + parser.usage);
Expand Down
Loading