diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml new file mode 100644 index 0000000..1feadd7 --- /dev/null +++ b/.github/workflows/github-actions.yml @@ -0,0 +1,42 @@ +name: GitHub Actions Demo +run-name: ${{ github.actor }} is testing out GitHub Actions 🚀 +on: [push] +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["pypy3.9", "pypy3.10", "3.9", "3.10", "3.11", "3.12"] + steps: + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + + - name: Install Qt + uses: jurplel/install-qt-action@v4 + + - name: Display Python version + run: python -c "import sys; print(sys.version)" + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + + - name: Setup tests + run: | + python client/setup.py develop + python server/setup.py develop + + - name: Run client tests + run: | + python -m pytest funq/client/tests/ + + - name: Run server tests + run: | + make -C server/tests/ check + + - name: Run functional tests + run: | + pytest tests-functionnal/