initial draft to approx ioniz parameter. #636
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: Check 🐍 pkg PROPOSAL. | |
on: [push] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os : "ubuntu-latest" | |
- os : "macos-latest" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Cache conan | |
id: cache-conan | |
uses: actions/cache@v2 | |
with: | |
path: ~/.conan | |
key: ${{ runner.os }}-cache-conan-${{ matrix.compiler }}-${{ hashFiles('conanfile.py') }}-key | |
- name: Install conan | |
run: python3 -m pip install conan | |
- name: Install Python 🐍 distributions 📦 | |
run: python3 -m pip install . | |
- name: Install pytest | |
run: python3 -m pip install pytest | |
- name: run pytest | |
run: python3 -m pytest tests/python -v |