Skip to content

[Bug] still at it trying to solve the dependancy errors #6

[Bug] still at it trying to solve the dependancy errors

[Bug] still at it trying to solve the dependancy errors #6

Workflow file for this run

name: Guardrails
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install System Dependencies
run: |
sudo apt-get update
sudo apt-get install -y libcairo2-dev libgirepository1.0-dev libglib2.0-dev pkg-config python3-dev libwebkit2gtk-4.1-dev
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install pytest
- name: Run Tests
run: pytest