Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows #250
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
# SPDX-FileCopyrightText: 2021 The dotVariant Authors (see AUTHORS.txt) | |
# | |
# SPDX-License-Identifier: BSL-1.0 | |
name: continuous test | |
on: [push, pull_request] | |
defaults: | |
run: | |
shell: pwsh | |
working-directory: src | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
config: [Debug, Release] | |
steps: | |
- uses: actions/checkout@v2 | |
- run: dotnet test dotVariant.sln -p:Configuration=${{ matrix.config }} |