From 657795c5948c621df47d5bf1823227c62f665d40 Mon Sep 17 00:00:00 2001 From: Daftbot Date: Tue, 25 Aug 2026 15:59:39 -0700 Subject: [PATCH] ci: run tests in review pipelines --- .github/workflows/test.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..77c11e8 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,21 @@ +name: Tests + +on: + pull_request: + push: + branches: + - main + +permissions: + contents: read + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Check out the repository + uses: actions/checkout@v7 + - name: Build the test container + run: docker build --file Dockerfile.test --tag mqtty-test . + - name: Run the test suite + run: docker run --rm mqtty-test