Skip to content

Add effects due to area expansion #74

Add effects due to area expansion

Add effects due to area expansion #74

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- name: Run tests
command: pytest
- name: Build docs
command: cd docs && make && cd ..
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install Python dependencies
run: |
pip install -r requirements/requirements-all.txt
- name: Install boost
run: |
sudo apt-get update
sudo apt-get install libboost-all-dev
- name: Compile ebtel++
run: |
scons
- run: |
${{ matrix.command }}