Add a test pipeline #2
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: Build Probackup on Windows | |
on: | |
push: | |
branches: | |
- "**" | |
# Runs triggered by pull requests are disabled to prevent executing potentially unsafe code from public pull requests | |
# pull_request: | |
# branches: | |
# - main | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
inputs: | |
build_versions: | |
description: Build versions | |
default: 9.5, 10, 13, 14, 15 | |
test_mode: | |
type: choice | |
description: Test mode | |
options: | |
- BASIC | |
- CATCHUP | |
- FULL | |
jobs: | |
build-linux: | |
name: bad-job | |
runs-on: | |
- windows-2022 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: ls | |
run: ls | |
- name: Build Docker image | |
run: .\install.ps1 | |