This repository has been archived by the owner on Jul 17, 2024. It is now read-only.
Enable creating virtualenv on macOS #3
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: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Get Conan | |
id: conan | |
uses: ./ # Uses an action in the root directory | |
- name: Did we get Conan? | |
run: echo "Conan version was '${{ steps.conan.outputs.version }}'" | |
build_version: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Get Conan | |
id: conan | |
uses: ./ # Uses an action in the root directory | |
with: | |
version: 1.50.0 | |
- name: Did we get Conan? | |
run: echo "Conan version was '${{ steps.conan.outputs.version }}'" |