From bf9ae4ee28e8a832892325a71048433d92c2eecf Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Mon, 22 Mar 2021 21:11:11 -0500 Subject: [PATCH] run tests during ci --- .github/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3baf502..cbac825 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -50,6 +50,10 @@ jobs: - name: Pre-commit hooks run: | pre-commit run --all-files + - name: Run tests + run: | + cd tests/ && python -m unittest discover + cd .. - name: Build assets run: circuitpython-build-bundles --filename_prefix ${{ steps.repo-name.outputs.repo-name }} --library_location . - name: Archive bundles