Skip to content

Upgrade GitHub actions #19

Upgrade GitHub actions

Upgrade GitHub actions #19

Workflow file for this run

name: Continuous Integration
on: [ push ]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.6'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run unit tests
run: |
PYTHONPATH='.' python -m pytest tests/ -p no:cacheprovider -v