fixed minore issues in the application and added further documentatio… #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit Tests | |
on: [push] | |
jobs: | |
backend-tests: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
working-directory: ${{github.workspace}}/application | |
run: | | |
# Create a dummy DISRAPTOR_API_KEY | |
sudo bash -c 'mkdir -p "/etc/discourse/" && echo "I am so secret" > "/etc/discourse/client-api-key"' | |
pip3 install -e .[dev,test] | |
make setup | |
- name: Run backend tests | |
working-directory: ${{github.workspace}}/application/test | |
run: pytest | |
frontend-tests: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Install dependencies | |
working-directory: ${{github.workspace}}/frontend | |
run: yarn --frozen-lockfile | |
- name: Run frontend tests | |
working-directory: ${{github.workspace}}/frontend | |
run: yarn test | |
python-client-test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Install Dependencies | |
working-directory: ${{github.workspace}}/python-client | |
run: | | |
sudo apt-get install -y openjdk-11-jdk | |
pip3 install .[test,dev] | |
- name: Running Tests | |
working-directory: ${{github.workspace}}/python-client | |
run: | | |
echo running on branch ${GITHUB_REF##*/} | |
pytest |