Skip to content

Update auxiliaryfunctions.py and double angles (#46) #102

Update auxiliaryfunctions.py and double angles (#46)

Update auxiliaryfunctions.py and double angles (#46) #102

name: Python package
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-11, windows-latest]
python-version: [3.9, "3.10"]
include:
- os: ubuntu-latest
path: ~/.cache/pip
- os: macos-11
path: ~/Library/Caches/pip
- os: windows-latest
path: ~\AppData\Local\pip\Cache
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python setup.py install