Skip to content

Commit

Permalink
Develop (#32)
Browse files Browse the repository at this point in the history
* remove workflow

* add targets/

* improve gh workflows

* update dependencies

* return sudo
  • Loading branch information
htrgouvea authored Jan 25, 2024
1 parent 194edff commit 9e70ee8
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 48 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/sast.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Testing on Ubuntu
name: ZARN - Static Analysis

on:
pull_request:
Expand All @@ -7,15 +7,17 @@ on:
- develop

jobs:
build:
zarn:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Install dependencies
- name: Install Perl and cpanminus
run: |
sudo apt install -y perl cpanminus
sudo cpanm --installdeps .
sudo apt install -y make perl cpanminus
- name: Install dependencies using cpanm
run: |
sudo cpanm --installdeps -f --notest .
- name: Verify the basic usage
run: |
perl zarn.pl --source . --sarif zarn.sarif
Expand Down
39 changes: 0 additions & 39 deletions .github/workflows/secret-scanning.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/security-gate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- develop

jobs:
build:
gate:
runs-on: ubuntu-latest
env:
MAX_CRITICAL: 0
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
*.DS_Store
*.DS_Store
targets/
4 changes: 2 additions & 2 deletions cpanfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
requires "JSON";
requires "File::Find::Rule", "0.34";
requires "Getopt::Long", "2.54";
requires "YAML::Tiny", "1.73";
requires "PPI::Document", "1.276";
requires "JSON";
requires "PPI::Document";

0 comments on commit 9e70ee8

Please sign in to comment.