Skip to content

Add copyright notice #85

Add copyright notice

Add copyright notice #85

Workflow file for this run

name: CI
on:
push:
branches:
- '*'
paths-ignore:
- README.md
jobs:
build-iphreeqc:
name: Build IPhreeqc Python bindings
strategy:
fail-fast: true
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Build Python bindings
run: pip install . pytest
- name: Test
run: pytest tests