From 014d886f8b5897aba76097a86b097db7484a5ff3 Mon Sep 17 00:00:00 2001 From: Erik Moeller Date: Thu, 11 Apr 2024 17:25:21 -0700 Subject: [PATCH] Migrate `make test` tests to GitHub Actions --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cba9abb..23e70ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,4 +15,8 @@ jobs: pip install -r test-requirements.txt - name: Run lint checks run: | - make lint \ No newline at end of file + make lint + - name: Run tests + run: | + make install-deps + make test \ No newline at end of file