From dccedc100a5ecbbabf28035efa9711b8e9a69e33 Mon Sep 17 00:00:00 2001 From: luissian Date: Wed, 17 Jan 2024 15:27:47 +0100 Subject: [PATCH] first draft to run test --- .github/workflows/tests.yml | 20 ++++++++++++++++++++ 1 file changed, 20 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..4359cb1 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,20 @@ +name: tests ci +# This workflow runs the pipeline with the minimal test dataset to check +# is completed without any errors +on: + pull_request: + +jobs: + test_ci: + name: Code testing + runs-on: ubuntu-latest + + steps: + - name: Check out pipeline code + uses: actions/checkout@v4 + + - name: Install taranis + run: pip install . + + - name: test analyze schema + run: taranis --help \ No newline at end of file