Skip to content

Add installation / launch tests #3

Add installation / launch tests

Add installation / launch tests #3

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.12'
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y xvfb
python -m pip install --upgrade pip
pip install -e .
- name: Launch C-COMPASS
run: |
Xvfb :99 -screen 0 1024x768x16 &
export DISPLAY=:99
ccompass &
echo $! > ccompass_pid.txt
sleep 10
kill $(cat ccompass_pid.txt)