Skip to content

Commit

Permalink
Adding tests for Linux on Github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaeldelucena committed Jul 8, 2024
1 parent f252501 commit df8dde8
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
@@ -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/

0 comments on commit df8dde8

Please sign in to comment.