This commit is contained in:
Mark McDowall 2023-12-24 20:30:35 -08:00
parent 54fd6aaeb5
commit f501c50d51
2 changed files with 10 additions and 12 deletions

View File

@ -17,9 +17,15 @@ runs:
- name: Setup .NET
uses: actions/setup-dotnet@v3
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: tests-linux-x64
path: _tests
- name: Run tests
shell: bash
runs: |
for i in tests/${{ inputs.pattern }}; do
for i in _tests/${{ inputs.pattern }}; do
dotnet test $i --no-build -c Release --filter ${{ inputs.filter }}
done

View File

@ -77,7 +77,7 @@ jobs:
# global.json Artifact
- name: Publish Distribution Artifact
- name: Publish global.json Artifact
uses: actions/upload-artifact@v4
with:
name: global_json
@ -114,16 +114,8 @@ jobs:
needs: backend
runs-on: ubuntu-latest
steps:
- name: Download global.json
uses: actions/download-artifact@v4
with:
name: global_json
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: tests-linux-x64
path: tests
- name: Check out
uses: actions/checkout@v3
- name: Test
uses: ./.github/actions/test