Skip to content

Enhance GitHub Actions workflow: add system dependencies installation… #3

Enhance GitHub Actions workflow: add system dependencies installation…

Enhance GitHub Actions workflow: add system dependencies installation… #3

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: self-hosted # This line specifies to use your self-hosted runner
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: |
python -m unittest discover tests
# Add any other steps your workflow needs