Migrate make test
tests to GitHub Actions
#65
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: CI | |
on: [push, pull_request] | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
container: debian:bullseye | |
steps: | |
- name: Install Debian package dependencies | |
run: | | |
apt-get update && apt-get install --yes --no-install-recommends make python3-pip python3-venv sudo git git-lfs | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- name: Install Python test dependencies and run tests | |
run: | | |
python3 -m venv .venv | |
source .venv/bin/activate | |
pip install -r test-requirements.txt | |
make test |