Skip to content

Add ci for tcp over udp #1

Add ci for tcp over udp

Add ci for tcp over udp #1

Workflow file for this run

name: TCP over UDP CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install Pytest
run: pip install pytest
- name: Build project
working-directory: backend/tcpOverUdp
run: make
- name: Run tests
working-directory: src/test
run: pytest