From e1d0a14acda92ba71fab5660d64d4be74f5fa110 Mon Sep 17 00:00:00 2001 From: Elias Dabbas Date: Mon, 30 Oct 2023 18:57:18 +0000 Subject: [PATCH] Add ci yml file for gh actions --- .github/workflows/ci.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..ad5d74f3 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,21 @@ +name: CI + +on: [push, pull_request] + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + matrix: + python: ["3.8", "3.9", "3.10", "3.11"] + steps: + - uses: actions/checkout@v2 + - name: Setup Python + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python }} + - name Install Tox and other packages + run: pip install tox + - name: Run Tox + run: tox \ No newline at end of file