Fixed: Loading .sln picked -rc1 from nuget.org, instead of dev feed #5
Workflow file for this run
This file contains hidden or 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: "Connectors: MySqlEFCore" | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- '[0-9]+.x' | |
pull_request: | |
paths: | |
- .gitattributes | |
- .gitignore | |
- behave* | |
- Pipfile* | |
- pyenv.pkgs | |
- '**/*.py' | |
- Connectors/src/MySqlEFCore/** | |
- .github/workflows/mysql-efcore.yml | |
- .github/workflows/shared-test-workflow.yml | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
windows: | |
uses: ./.github/workflows/shared-test-workflow.yml | |
secrets: inherit | |
with: | |
feature: Connectors | |
sample: MySqlEFCore | |
OS: windows | |
linux: | |
needs: windows | |
if: ${{ !cancelled() }} | |
uses: ./.github/workflows/shared-test-workflow.yml | |
secrets: inherit | |
with: | |
feature: Connectors | |
sample: MySqlEFCore | |
OS: linux |