Skip to content

(Commented) method for installing python sources by Meson. #45

(Commented) method for installing python sources by Meson.

(Commented) method for installing python sources by Meson. #45

Workflow file for this run

name: Build and Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libblas-dev liblapack-dev gfortran pkg-config
- name: Install Python dependencies
run: |
pip install meson ninja meson-python numpy scipy ase
- name: Setup build directory
run: meson setup builddir
- name: Compile
run: meson compile -C builddir
- name: Run tests
run: meson test -C builddir
# - name: Install package
# run: meson install -C builddir