Use workload identity for sql server auth #1
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: TEST Pull request | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
test: | ||
- msg: "hello world" | ||
if: true | ||
- msg: "testing testing" | ||
if: false | ||
if: ${{matrix.test.if}} | ||
Check failure on line 18 in .github/workflows/testpr.yml GitHub Actions / TEST Pull requestInvalid workflow file
|
||
steps: | ||
- run: echo ${{matrix.test.msg}} |