Skip to content

Commit

Permalink
Centralizable code analysis workflow (#7208)
Browse files Browse the repository at this point in the history
* Centralizable workflow to run repo integrity action

* Use variable to bring in default branch

* Update integrity.yml

* Rename to code analysis
  • Loading branch information
DavidBoike authored Nov 12, 2024
1 parent 0b47bff commit 707ddcc
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/code-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Code Analysis
on:
push:
branches:
- main
- master
- release-*
pull_request:
workflow_dispatch:
env:
DOTNET_NOLOGO: true
defaults:
run:
shell: pwsh
jobs:
code-analysis:
name: Code Analysis
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Repo integrity tests
uses: Particular/repo-integrity-action@main

0 comments on commit 707ddcc

Please sign in to comment.