Skip to content

Merge pull request #20 from ErhanCitil/feature/add-to-cart-functional… #41

Merge pull request #20 from ErhanCitil/feature/add-to-cart-functional…

Merge pull request #20 from ErhanCitil/feature/add-to-cart-functional… #41

Workflow file for this run

name: Check MacOS compatibility
# Run this workflow every time a new commit pushed to your repository
on:
push:
branches:
- main
- stable/*
tags:
- '*'
pull_request:
workflow_dispatch:
jobs:
macos-deps:
name: Install dev dependencies on MacOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.9'
cache: 'pip'
cache-dependency-path: 'requirements/*.txt'
- name: Install OS-level packages
run: |
brew install pkg-config
- name: Install dependencies
run: |
export LIBRARY_PATH=$LIBRARY_PATH:/usr/local/opt/openssl/lib/
pip install -r requirements/dev.txt \
--use-pep517 \
--use-feature=no-binary-enable-wheel-cache
env:
STATIC_DEPS: 'true'