Bump NUnit from 3.13.2 to 3.14.0 #18
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Static Analysis Trigger | ||
on: | ||
pull_request: | ||
branches: [develop] | ||
jobs: | ||
save-branch-name: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Persist branch name | ||
run: | | ||
Check failure on line 12 in .github/workflows/static-analysis-trigger.yml GitHub Actions / Static Analysis TriggerInvalid workflow file
|
||
mkdir -p ./pr | ||
echo "${{ GITHUB_HEAD_REF }}" > ./pr/branch.txt | ||
- name: Upload branch name | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: pr | ||
path: pr/ |