Clarify how environment variables should be separated in linux_env_vars and windows_env_vars
#109
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: Pull request | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| jobs: | |
| tests_with_docker: | |
| name: Test with Docker | |
| uses: ./.github/workflows/swift_package_test.yml | |
| with: | |
| # Linux | |
| linux_build_command: | | |
| mkdir MyPackage | |
| cd MyPackage | |
| swift package init --type library | |
| swift build | |
| # Windows | |
| windows_build_command: | | |
| mkdir MyPackage | |
| cd MyPackage | |
| swift package init --type library | |
| swift build | |
| enable_windows_docker: true | |
| tests_without_docker: | |
| name: Test without Docker | |
| uses: ./.github/workflows/swift_package_test.yml | |
| with: | |
| # Skip Linux which doesn't currently support docker-less workflow | |
| enable_linux_checks: false | |
| # Windows | |
| windows_build_command: | | |
| mkdir MyPackage | |
| cd MyPackage | |
| swift package init --type library | |
| swift build | |
| enable_windows_docker: false | |
| soundness: | |
| name: Soundness | |
| uses: ./.github/workflows/soundness.yml | |
| with: | |
| api_breakage_check_enabled: false | |
| license_header_check_project_name: "Swift.org" | |
| format_check_enabled: false |