Skip to content

Migrate make test tests to GitHub Actions #73

Migrate make test tests to GitHub Actions

Migrate make test tests to GitHub Actions #73

Workflow file for this run

---
name: CI
on: [push, pull_request]
jobs:
checks:
runs-on: ubuntu-latest
container: debian:bullseye
steps:
- name: Bootstrap Debian system package dependencies
run: |
apt-get update && apt-get install --yes --no-install-recommends make sudo git git-lfs
- uses: actions/checkout@v4
with:
lfs: true
- name: Install additional packages and Pyython dependencies
run: |
# Installs Python & bootstrap wheels, and initializes a virtualenv at .venv
make install-deps
./venv/bin/pip install -r test-requirements.txt
- name: Run tests
run: |
. ./venv/bin/activate
make test