Skip to content

Merge pull request #8 from GetSoloTech/updates_0_3_4 #18

Merge pull request #8 from GetSoloTech/updates_0_3_4

Merge pull request #8 from GetSoloTech/updates_0_3_4 #18

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Lint with flake8
run: |
pip install flake8
flake8 solo_server tests
- name: Test with pytest
run: |
pip install pytest
pytest