Skip to content

Migrate make test tests to GitHub Actions #58

Migrate make test tests to GitHub Actions

Migrate make test tests to GitHub Actions #58

Workflow file for this run

---
name: CI
on: [push, pull_request]
jobs:
checks:
runs-on: ubuntu-latest
container: debian:bullseye
steps:
- uses: actions/checkout@v4
with:
lfs: true
run: |
apt-get update && apt-get install --yes --no-install-recommends make python3-pip sudo
pip install -r test-requirements.txt
- name: Run lint checks
run: |
make lint
- name: Run tests
run: |
make install-deps
make test