Skip to content

Update README

Update README #165

Workflow file for this run

on: [push, pull_request]
jobs:
make:
runs-on: ubuntu-20.04
steps:
- name: Set up Git repository
uses: actions/checkout@v4
- name: Check code and build
run: |
cd python/ && make clean check all && cd ..
pip:
needs: [make]
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
os: [ubuntu-20.04, ubuntu-22.04, windows-2019, windows-2022, macos-12, macos-13, macos-14]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Git repository
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Check pip installation
run: |
pip install https://api.github.com/repos/valab-certh/meddisc/tarball/main#subdirectory=python