Skip to content

Pyseams docs

Pyseams docs #30

Workflow file for this run

name: "Build pyseams and test"
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: mamba-org/setup-micromamba@v1
with:
environment-file: environment.yml
- name: Build pyseams
shell: bash -l {0}
run: |
micromamba activate pyseamsdev
meson setup bbdir
meson compile -C bbdir
- name: Run a test
shell: bash -l {0}
run: |
python -c 'import bbdir.cyoda'