Skip to content
This repository has been archived by the owner on Jul 17, 2024. It is now read-only.

Enable creating virtualenv on macOS #3

Enable creating virtualenv on macOS

Enable creating virtualenv on macOS #3

Workflow file for this run

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 }}'"