Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanJosipovic committed Sep 30, 2024
1 parent 3d49fa0 commit bb4d5ed
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,6 @@ jobs:
file: coverage.cobertura.xml
fail_ci_if_error: true

- name: Benchmark
working-directory: benchmarks/oidc-guard-benchmarks
run: dotnet run -c Release

- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
Expand All @@ -69,11 +66,20 @@ jobs:
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH'

benchmark:
name: Create Release
runs-on: windows-latest
needs: build-test
steps:
- name: Benchmark
working-directory: benchmarks/oidc-guard-benchmarks
run: dotnet run -c Release

create-release:
if: ${{ github.event_name != 'pull_request' }}
name: Create Release
runs-on: ubuntu-latest
needs: build-test
needs: [build-test, benchmark]
steps:
- uses: actions/checkout@v4

Expand Down

0 comments on commit bb4d5ed

Please sign in to comment.