Skip to content

Commit

Permalink
update regression workflow to fetch deps after
Browse files Browse the repository at this point in the history
  • Loading branch information
amaanq committed Jan 13, 2025
1 parent 7770dff commit 76c3bd9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/check-regressions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
repository: ${{ matrix.repo.org }}/${{ matrix.repo.name }}
path: ${{ matrix.repo.org }}/${{ matrix.repo.name }}

- name: Fetch dependencies
- name: Fetch dependencies (before)
run: cargo fetch

- name: Obtain results before changes
Expand All @@ -61,6 +61,9 @@ jobs:
git checkout ${{ github.sha }}
echo 'checked out ${{ github.sha }}'
- name: Fetch dependencies (after)
run: cargo fetch

- name: Obtain results after changes
run: |
cargo run --locked --release --bin datadog-static-analyzer -- -i ${{ matrix.repo.org }}/${{ matrix.repo.name }} -o result-post.json -b -f sarif
Expand Down

0 comments on commit 76c3bd9

Please sign in to comment.