Skip to content

Update run_socket_grex.py #45

Update run_socket_grex.py

Update run_socket_grex.py #45

Workflow file for this run

name: CI
on: [push]
jobs:
CI:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Install Poetry
run: pipx install poetry
- name: Set up python
id: setup-python
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: "poetry"
- name: Install project
run: poetry install
- name: Formatting
run: poetry run black . --check
- name: Linting
run: poetry run flake8 .
- name: Tests
run: poetry run pytest --cov . -n 2