feat: release on windows #92
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: "Validations" | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
env: | |
FORCE_COLOR: true | |
jobs: | |
Validations: | |
# Note: changing this job name requires making the same update in the .github/workflows/release.yaml pipeline | |
name: "Validations" | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Bootstrap environment | |
uses: ./.github/actions/bootstrap | |
- name: Run all validations | |
run: make pr-validations | |
WindowsValidations: | |
name: "Windows validations" | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install make | |
run: "choco install make" | |
- name: run tests | |
run: "make unit" | |
- name: run cli tests | |
run: "make cli" |