Skip to content

test?

test? #3

Workflow file for this run

name: Lint and Test
on:
push:
branches:
- '*'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12.3'
cache: 'pip'
- name: Install Dependencies
run: |
cd server
pip install -r requirements.txt
cd test
pip install -r requirements.txt
- name: Run Pylint
run: |
cd server
pylint --disable=R,C .
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Test Client
run: |
cd client
# Add commands to run tests for the client application
- name: Test Server
run: |
cd server
# Add commands to run tests for the server application