server: tests: ci adding container to specify server port and allow the server to listen to

This commit is contained in:
Pierrick HYMBERT 2024-02-23 02:06:36 +01:00
parent 2f756f84df
commit 6a215e5359

View file

@ -15,6 +15,10 @@ on:
jobs:
ubuntu-latest-cmake:
runs-on: ubuntu-latest
container:
image: ubuntu:latest
ports:
- 8888
steps:
- name: Clone
@ -24,8 +28,8 @@ jobs:
- name: Dependencies
id: depends
run: |
sudo apt-get update
sudo apt-get install build-essential
apt-get update
apt-get -y install build-essential
- name: Build
id: cmake_build