mirror of https://github.com/Dioptas/Dioptas.git
35 lines
726 B
YAML
35 lines
726 B
YAML
# This is a basic workflow to help you get started with Actions
|
|
|
|
name: CI_backend
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install poetry
|
|
run: pip install poetry
|
|
|
|
- name: Setup Python 3.11
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.11'
|
|
cache: 'poetry'
|
|
|
|
- name: Install Apt Dependencies
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install python3-opengl libgl1-mesa-dev libglib2.0-0
|
|
|
|
- name: Install poetry dependencies
|
|
run: poetry install
|
|
|
|
- name: Run tests
|
|
run: |
|
|
poetry run py.test dioptas/tests/unit_tests/
|