From afcc3746b36a133bafcbb5bbed47721fec26600e Mon Sep 17 00:00:00 2001 From: Carlos Bergillos Date: Wed, 20 Mar 2024 22:23:30 +0100 Subject: [PATCH] Add CI test --- .github/workflows/tests.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..240eed7 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,27 @@ +name: Test Schemas + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + test: + runs-on: ubuntu-20.04 + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Set up Python runtime + uses: actions/setup-python@v4 + with: + python-version: 3.10.2 + + - name: Build and test + run: | + pip install -r requirements.txt + make clean + make build